diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-08-12 09:28:15 +0200 |
commit | 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 (patch) | |
tree | 577a29fb579188d16003a209ce2a2e9c5b0aa2bd /includes/dao/IDBAccessObject.php | |
parent | cacc939b34e315b85e2d72997811eb6677996cc1 (diff) |
Update to MediaWiki 1.21.1
Diffstat (limited to 'includes/dao/IDBAccessObject.php')
-rw-r--r-- | includes/dao/IDBAccessObject.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/dao/IDBAccessObject.php b/includes/dao/IDBAccessObject.php index e30522a5..4eb6ff3e 100644 --- a/includes/dao/IDBAccessObject.php +++ b/includes/dao/IDBAccessObject.php @@ -41,10 +41,12 @@ * - b) Determine the new row (expensive, so we don't want to hold locks now) * - c) Re-read the current row with READ_LOCKING; if it changed then bail out * - d) otherwise, do the updates + * + * @since 1.20 */ interface IDBAccessObject { // Constants for object loading bitfield flags (higher => higher QoS) - const READ_LATEST = 1; // read from the master + const READ_LATEST = 1; // read from the master const READ_LOCKING = 3; // READ_LATEST and "FOR UPDATE" // Convenience constant for callers to explicitly request slave data |