diff options
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 |