Database: close() should not commit transactions
[lhc/web/wiklou.git] / includes / libs / rdbms / database / IDatabase.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 */
20 namespace Wikimedia\Rdbms;
21
22 use InvalidArgumentException;
23 use Wikimedia\ScopedCallback;
24 use RuntimeException;
25 use stdClass;
26
27 /**
28 * @defgroup Database Database
29 * This group deals with database interface functions
30 * and query specifics/optimisations.
31 */
32 /**
33 * Basic database interface for live and lazy-loaded relation database handles
34 *
35 * @note IDatabase and DBConnRef should be updated to reflect any changes
36 * @ingroup Database
37 */
38 interface IDatabase {
39 /** @var int Callback triggered immediately due to no active transaction */
40 const TRIGGER_IDLE = 1;
41 /** @var int Callback triggered by COMMIT */
42 const TRIGGER_COMMIT = 2;
43 /** @var int Callback triggered by ROLLBACK */
44 const TRIGGER_ROLLBACK = 3;
45
46 /** @var string Transaction is requested by regular caller outside of the DB layer */
47 const TRANSACTION_EXPLICIT = '';
48 /** @var string Transaction is requested internally via DBO_TRX/startAtomic() */
49 const TRANSACTION_INTERNAL = 'implicit';
50
51 /** @var string Atomic section is not cancelable */
52 const ATOMIC_NOT_CANCELABLE = '';
53 /** @var string Atomic section is cancelable */
54 const ATOMIC_CANCELABLE = 'cancelable';
55
56 /** @var string Commit/rollback is from outside the IDatabase handle and connection manager */
57 const FLUSHING_ONE = '';
58 /** @var string Commit/rollback is from the connection manager for the IDatabase handle */
59 const FLUSHING_ALL_PEERS = 'flush';
60 /** @var string Commit/rollback is from the IDatabase handle internally */
61 const FLUSHING_INTERNAL = 'flush-internal';
62
63 /** @var string Do not remember the prior flags */
64 const REMEMBER_NOTHING = '';
65 /** @var string Remember the prior flags */
66 const REMEMBER_PRIOR = 'remember';
67 /** @var string Restore to the prior flag state */
68 const RESTORE_PRIOR = 'prior';
69 /** @var string Restore to the initial flag state */
70 const RESTORE_INITIAL = 'initial';
71
72 /** @var string Estimate total time (RTT, scanning, waiting on locks, applying) */
73 const ESTIMATE_TOTAL = 'total';
74 /** @var string Estimate time to apply (scanning, applying) */
75 const ESTIMATE_DB_APPLY = 'apply';
76
77 /** @var int Combine list with comma delimeters */
78 const LIST_COMMA = 0;
79 /** @var int Combine list with AND clauses */
80 const LIST_AND = 1;
81 /** @var int Convert map into a SET clause */
82 const LIST_SET = 2;
83 /** @var int Treat as field name and do not apply value escaping */
84 const LIST_NAMES = 3;
85 /** @var int Combine list with OR clauses */
86 const LIST_OR = 4;
87
88 /** @var int Enable debug logging */
89 const DBO_DEBUG = 1;
90 /** @var int Disable query buffering (only one result set can be iterated at a time) */
91 const DBO_NOBUFFER = 2;
92 /** @var int Ignore query errors (internal use only!) */
93 const DBO_IGNORE = 4;
94 /** @var int Automatically start a transaction before running a query if none is active */
95 const DBO_TRX = 8;
96 /** @var int Use DBO_TRX in non-CLI mode */
97 const DBO_DEFAULT = 16;
98 /** @var int Use DB persistent connections if possible */
99 const DBO_PERSISTENT = 32;
100 /** @var int DBA session mode; mostly for Oracle */
101 const DBO_SYSDBA = 64;
102 /** @var int Schema file mode; mostly for Oracle */
103 const DBO_DDLMODE = 128;
104 /** @var int Enable SSL/TLS in connection protocol */
105 const DBO_SSL = 256;
106 /** @var int Enable compression in connection protocol */
107 const DBO_COMPRESS = 512;
108
109 /**
110 * A string describing the current software version, and possibly
111 * other details in a user-friendly way. Will be listed on Special:Version, etc.
112 * Use getServerVersion() to get machine-friendly information.
113 *
114 * @return string Version information from the database server
115 */
116 public function getServerInfo();
117
118 /**
119 * Turns buffering of SQL result sets on (true) or off (false). Default is "on".
120 *
121 * Unbuffered queries are very troublesome in MySQL:
122 *
123 * - If another query is executed while the first query is being read
124 * out, the first query is killed. This means you can't call normal
125 * Database functions while you are reading an unbuffered query result
126 * from a normal Database connection.
127 *
128 * - Unbuffered queries cause the MySQL server to use large amounts of
129 * memory and to hold broad locks which block other queries.
130 *
131 * If you want to limit client-side memory, it's almost always better to
132 * split up queries into batches using a LIMIT clause than to switch off
133 * buffering.
134 *
135 * @param null|bool $buffer
136 * @return null|bool The previous value of the flag
137 */
138 public function bufferResults( $buffer = null );
139
140 /**
141 * Gets the current transaction level.
142 *
143 * Historically, transactions were allowed to be "nested". This is no
144 * longer supported, so this function really only returns a boolean.
145 *
146 * @return int The previous value
147 */
148 public function trxLevel();
149
150 /**
151 * Get the UNIX timestamp of the time that the transaction was established
152 *
153 * This can be used to reason about the staleness of SELECT data
154 * in REPEATABLE-READ transaction isolation level.
155 *
156 * @return float|null Returns null if there is not active transaction
157 * @since 1.25
158 */
159 public function trxTimestamp();
160
161 /**
162 * @return bool Whether an explicit transaction or atomic sections are still open
163 * @since 1.28
164 */
165 public function explicitTrxActive();
166
167 /**
168 * Get/set the table prefix.
169 * @param string|null $prefix The table prefix to set, or omitted to leave it unchanged.
170 * @return string The previous table prefix.
171 */
172 public function tablePrefix( $prefix = null );
173
174 /**
175 * Get/set the db schema.
176 * @param string|null $schema The database schema to set, or omitted to leave it unchanged.
177 * @return string The previous db schema.
178 */
179 public function dbSchema( $schema = null );
180
181 /**
182 * Get properties passed down from the server info array of the load
183 * balancer.
184 *
185 * @param string|null $name The entry of the info array to get, or null to get the
186 * whole array
187 *
188 * @return array|mixed|null
189 */
190 public function getLBInfo( $name = null );
191
192 /**
193 * Set the LB info array, or a member of it. If called with one parameter,
194 * the LB info array is set to that parameter. If it is called with two
195 * parameters, the member with the given name is set to the given value.
196 *
197 * @param string $name
198 * @param array|null $value
199 */
200 public function setLBInfo( $name, $value = null );
201
202 /**
203 * Set a lazy-connecting DB handle to the master DB (for replication status purposes)
204 *
205 * @param IDatabase $conn
206 * @since 1.27
207 */
208 public function setLazyMasterHandle( IDatabase $conn );
209
210 /**
211 * Returns true if this database does an implicit sort when doing GROUP BY
212 *
213 * @return bool
214 * @deprecated Since 1.30; only use grouped or aggregated fields in the SELECT
215 */
216 public function implicitGroupby();
217
218 /**
219 * Returns true if this database does an implicit order by when the column has an index
220 * For example: SELECT page_title FROM page LIMIT 1
221 *
222 * @return bool
223 */
224 public function implicitOrderby();
225
226 /**
227 * Return the last query that went through IDatabase::query()
228 * @return string
229 */
230 public function lastQuery();
231
232 /**
233 * Returns true if the connection may have been used for write queries.
234 * Should return true if unsure.
235 *
236 * @return bool
237 * @deprecated Since 1.31; use lastDoneWrites()
238 */
239 public function doneWrites();
240
241 /**
242 * Returns the last time the connection may have been used for write queries.
243 * Should return a timestamp if unsure.
244 *
245 * @return int|float UNIX timestamp or false
246 * @since 1.24
247 */
248 public function lastDoneWrites();
249
250 /**
251 * @return bool Whether there is a transaction open with possible write queries
252 * @since 1.27
253 */
254 public function writesPending();
255
256 /**
257 * @return bool Whether there is a transaction open with pre-commit callbacks pending
258 * @since 1.32
259 */
260 public function preCommitCallbacksPending();
261
262 /**
263 * Whether there is a transaction open with either possible write queries
264 * or unresolved pre-commit/commit/resolution callbacks pending
265 *
266 * This does *not* count recurring callbacks, e.g. from setTransactionListener().
267 *
268 * @return bool
269 */
270 public function writesOrCallbacksPending();
271
272 /**
273 * Get the time spend running write queries for this transaction
274 *
275 * High times could be due to scanning, updates, locking, and such
276 *
277 * @param string $type IDatabase::ESTIMATE_* constant [default: ESTIMATE_ALL]
278 * @return float|bool Returns false if not transaction is active
279 * @since 1.26
280 */
281 public function pendingWriteQueryDuration( $type = self::ESTIMATE_TOTAL );
282
283 /**
284 * Get the list of method names that did write queries for this transaction
285 *
286 * @return array
287 * @since 1.27
288 */
289 public function pendingWriteCallers();
290
291 /**
292 * Get the number of affected rows from pending write queries
293 *
294 * @return int
295 * @since 1.30
296 */
297 public function pendingWriteRowsAffected();
298
299 /**
300 * Is a connection to the database open?
301 * @return bool
302 */
303 public function isOpen();
304
305 /**
306 * Set a flag for this connection
307 *
308 * @param int $flag DBO_* constants from Defines.php:
309 * - DBO_DEBUG: output some debug info (same as debug())
310 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
311 * - DBO_TRX: automatically start transactions
312 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
313 * and removes it in command line mode
314 * - DBO_PERSISTENT: use persistant database connection
315 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
316 */
317 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING );
318
319 /**
320 * Clear a flag for this connection
321 *
322 * @param int $flag DBO_* constants from Defines.php:
323 * - DBO_DEBUG: output some debug info (same as debug())
324 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
325 * - DBO_TRX: automatically start transactions
326 * - DBO_DEFAULT: automatically sets DBO_TRX if not in command line mode
327 * and removes it in command line mode
328 * - DBO_PERSISTENT: use persistant database connection
329 * @param string $remember IDatabase::REMEMBER_* constant [default: REMEMBER_NOTHING]
330 */
331 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING );
332
333 /**
334 * Restore the flags to their prior state before the last setFlag/clearFlag call
335 *
336 * @param string $state IDatabase::RESTORE_* constant. [default: RESTORE_PRIOR]
337 * @since 1.28
338 */
339 public function restoreFlags( $state = self::RESTORE_PRIOR );
340
341 /**
342 * Returns a boolean whether the flag $flag is set for this connection
343 *
344 * @param int $flag DBO_* constants from Defines.php:
345 * - DBO_DEBUG: output some debug info (same as debug())
346 * - DBO_NOBUFFER: don't buffer results (inverse of bufferResults())
347 * - DBO_TRX: automatically start transactions
348 * - DBO_PERSISTENT: use persistant database connection
349 * @return bool
350 */
351 public function getFlag( $flag );
352
353 /**
354 * @return string
355 */
356 public function getDomainID();
357
358 /**
359 * Alias for getDomainID()
360 *
361 * @return string
362 * @deprecated 1.30
363 */
364 public function getWikiID();
365
366 /**
367 * Get the type of the DBMS, as it appears in $wgDBtype.
368 *
369 * @return string
370 */
371 public function getType();
372
373 /**
374 * Fetch the next row from the given result object, in object form.
375 * Fields can be retrieved with $row->fieldname, with fields acting like
376 * member variables.
377 * If no more rows are available, false is returned.
378 *
379 * @param IResultWrapper|stdClass $res Object as returned from IDatabase::query(), etc.
380 * @return stdClass|bool
381 * @throws DBUnexpectedError Thrown if the database returns an error
382 */
383 public function fetchObject( $res );
384
385 /**
386 * Fetch the next row from the given result object, in associative array
387 * form. Fields are retrieved with $row['fieldname'].
388 * If no more rows are available, false is returned.
389 *
390 * @param IResultWrapper $res Result object as returned from IDatabase::query(), etc.
391 * @return array|bool
392 * @throws DBUnexpectedError Thrown if the database returns an error
393 */
394 public function fetchRow( $res );
395
396 /**
397 * Get the number of rows in a result object
398 *
399 * @param mixed $res A SQL result
400 * @return int
401 */
402 public function numRows( $res );
403
404 /**
405 * Get the number of fields in a result object
406 * @see https://secure.php.net/mysql_num_fields
407 *
408 * @param mixed $res A SQL result
409 * @return int
410 */
411 public function numFields( $res );
412
413 /**
414 * Get a field name in a result object
415 * @see https://secure.php.net/mysql_field_name
416 *
417 * @param mixed $res A SQL result
418 * @param int $n
419 * @return string
420 */
421 public function fieldName( $res, $n );
422
423 /**
424 * Get the inserted value of an auto-increment row
425 *
426 * This should only be called after an insert that used an auto-incremented
427 * value. If no such insert was previously done in the current database
428 * session, the return value is undefined.
429 *
430 * @return int
431 */
432 public function insertId();
433
434 /**
435 * Change the position of the cursor in a result object
436 * @see https://secure.php.net/mysql_data_seek
437 *
438 * @param mixed $res A SQL result
439 * @param int $row
440 */
441 public function dataSeek( $res, $row );
442
443 /**
444 * Get the last error number
445 * @see https://secure.php.net/mysql_errno
446 *
447 * @return int
448 */
449 public function lastErrno();
450
451 /**
452 * Get a description of the last error
453 * @see https://secure.php.net/mysql_error
454 *
455 * @return string
456 */
457 public function lastError();
458
459 /**
460 * Get the number of rows affected by the last write query
461 * @see https://secure.php.net/mysql_affected_rows
462 *
463 * @return int
464 */
465 public function affectedRows();
466
467 /**
468 * Returns a wikitext link to the DB's website, e.g.,
469 * return "[https://www.mysql.com/ MySQL]";
470 * Should at least contain plain text, if for some reason
471 * your database has no website.
472 *
473 * @return string Wikitext of a link to the server software's web site
474 */
475 public function getSoftwareLink();
476
477 /**
478 * A string describing the current software version, like from
479 * mysql_get_server_info().
480 *
481 * @return string Version information from the database server.
482 */
483 public function getServerVersion();
484
485 /**
486 * Close the database connection
487 *
488 * This should only be called after any transactions have been resolved,
489 * aside from read-only automatic transactions (assuming no callbacks are registered).
490 * If a transaction is still open anyway, it will be rolled back.
491 *
492 * @throws DBError
493 * @return bool Operation success. true if already closed.
494 */
495 public function close();
496
497 /**
498 * Run an SQL query and return the result. Normally throws a DBQueryError
499 * on failure. If errors are ignored, returns false instead.
500 *
501 * If a connection loss is detected, then an attempt to reconnect will be made.
502 * For queries that involve no larger transactions or locks, they will be re-issued
503 * for convenience, provided the connection was re-established.
504 *
505 * In new code, the query wrappers select(), insert(), update(), delete(),
506 * etc. should be used where possible, since they give much better DBMS
507 * independence and automatically quote or validate user input in a variety
508 * of contexts. This function is generally only useful for queries which are
509 * explicitly DBMS-dependent and are unsupported by the query wrappers, such
510 * as CREATE TABLE.
511 *
512 * However, the query wrappers themselves should call this function.
513 *
514 * @param string $sql SQL query
515 * @param string $fname Name of the calling function, for profiling/SHOW PROCESSLIST
516 * comment (you can use __METHOD__ or add some extra info)
517 * @param bool $tempIgnore Whether to avoid throwing an exception on errors...
518 * maybe best to catch the exception instead?
519 * @return bool|IResultWrapper True for a successful write query, IResultWrapper object
520 * for a successful read query, or false on failure if $tempIgnore set
521 * @throws DBError
522 */
523 public function query( $sql, $fname = __METHOD__, $tempIgnore = false );
524
525 /**
526 * Free a result object returned by query() or select(). It's usually not
527 * necessary to call this, just use unset() or let the variable holding
528 * the result object go out of scope.
529 *
530 * @param mixed $res A SQL result
531 */
532 public function freeResult( $res );
533
534 /**
535 * A SELECT wrapper which returns a single field from a single result row.
536 *
537 * Usually throws a DBQueryError on failure. If errors are explicitly
538 * ignored, returns false on failure.
539 *
540 * If no result rows are returned from the query, false is returned.
541 *
542 * @param string|array $table Table name. See IDatabase::select() for details.
543 * @param string $var The field name to select. This must be a valid SQL
544 * fragment: do not use unvalidated user input.
545 * @param string|array $cond The condition array. See IDatabase::select() for details.
546 * @param string $fname The function name of the caller.
547 * @param string|array $options The query options. See IDatabase::select() for details.
548 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
549 *
550 * @return mixed The value from the field
551 * @throws DBError
552 */
553 public function selectField(
554 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
555 );
556
557 /**
558 * A SELECT wrapper which returns a list of single field values from result rows.
559 *
560 * Usually throws a DBQueryError on failure. If errors are explicitly
561 * ignored, returns false on failure.
562 *
563 * If no result rows are returned from the query, false is returned.
564 *
565 * @param string|array $table Table name. See IDatabase::select() for details.
566 * @param string $var The field name to select. This must be a valid SQL
567 * fragment: do not use unvalidated user input.
568 * @param string|array $cond The condition array. See IDatabase::select() for details.
569 * @param string $fname The function name of the caller.
570 * @param string|array $options The query options. See IDatabase::select() for details.
571 * @param string|array $join_conds The query join conditions. See IDatabase::select() for details.
572 *
573 * @return array The values from the field
574 * @throws DBError
575 * @since 1.25
576 */
577 public function selectFieldValues(
578 $table, $var, $cond = '', $fname = __METHOD__, $options = [], $join_conds = []
579 );
580
581 /**
582 * Execute a SELECT query constructed using the various parameters provided.
583 * See below for full details of the parameters.
584 *
585 * @param string|array $table Table name
586 * @param string|array $vars Field names
587 * @param string|array $conds Conditions
588 * @param string $fname Caller function name
589 * @param array $options Query options
590 * @param array $join_conds Join conditions
591 *
592 *
593 * @param string|array $table
594 *
595 * May be either an array of table names, or a single string holding a table
596 * name. If an array is given, table aliases can be specified, for example:
597 *
598 * [ 'a' => 'user' ]
599 *
600 * This includes the user table in the query, with the alias "a" available
601 * for use in field names (e.g. a.user_name).
602 *
603 * A derived table, defined by the result of selectSQLText(), requires an alias
604 * key and a Subquery instance value which wraps the SQL query, for example:
605 *
606 * [ 'c' => new Subquery( 'SELECT ...' ) ]
607 *
608 * Joins using parentheses for grouping (since MediaWiki 1.31) may be
609 * constructed using nested arrays. For example,
610 *
611 * [ 'tableA', 'nestedB' => [ 'tableB', 'b2' => 'tableB2' ] ]
612 *
613 * along with `$join_conds` like
614 *
615 * [ 'b2' => [ 'JOIN', 'b_id = b2_id' ], 'nestedB' => [ 'LEFT JOIN', 'b_a = a_id' ] ]
616 *
617 * will produce SQL something like
618 *
619 * FROM tableA LEFT JOIN (tableB JOIN tableB2 AS b2 ON (b_id = b2_id)) ON (b_a = a_id)
620 *
621 * All of the table names given here are automatically run through
622 * Database::tableName(), which causes the table prefix (if any) to be
623 * added, and various other table name mappings to be performed.
624 *
625 * Do not use untrusted user input as a table name. Alias names should
626 * not have characters outside of the Basic multilingual plane.
627 *
628 * @param string|array $vars
629 *
630 * May be either a field name or an array of field names. The field names
631 * can be complete fragments of SQL, for direct inclusion into the SELECT
632 * query. If an array is given, field aliases can be specified, for example:
633 *
634 * [ 'maxrev' => 'MAX(rev_id)' ]
635 *
636 * This includes an expression with the alias "maxrev" in the query.
637 *
638 * If an expression is given, care must be taken to ensure that it is
639 * DBMS-independent.
640 *
641 * Untrusted user input must not be passed to this parameter.
642 *
643 * @param string|array $conds
644 *
645 * May be either a string containing a single condition, or an array of
646 * conditions. If an array is given, the conditions constructed from each
647 * element are combined with AND.
648 *
649 * Array elements may take one of two forms:
650 *
651 * - Elements with a numeric key are interpreted as raw SQL fragments.
652 * - Elements with a string key are interpreted as equality conditions,
653 * where the key is the field name.
654 * - If the value of such an array element is a scalar (such as a
655 * string), it will be treated as data and thus quoted appropriately.
656 * If it is null, an IS NULL clause will be added.
657 * - If the value is an array, an IN (...) clause will be constructed
658 * from its non-null elements, and an IS NULL clause will be added
659 * if null is present, such that the field may match any of the
660 * elements in the array. The non-null elements will be quoted.
661 *
662 * Note that expressions are often DBMS-dependent in their syntax.
663 * DBMS-independent wrappers are provided for constructing several types of
664 * expression commonly used in condition queries. See:
665 * - IDatabase::buildLike()
666 * - IDatabase::conditional()
667 *
668 * Untrusted user input is safe in the values of string keys, however untrusted
669 * input must not be used in the array key names or in the values of numeric keys.
670 * Escaping of untrusted input used in values of numeric keys should be done via
671 * IDatabase::addQuotes()
672 *
673 * Use an empty array, string, or '*' to update all rows.
674 *
675 * @param string|array $options
676 *
677 * Optional: Array of query options. Boolean options are specified by
678 * including them in the array as a string value with a numeric key, for
679 * example:
680 *
681 * [ 'FOR UPDATE' ]
682 *
683 * The supported options are:
684 *
685 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
686 * with LIMIT can theoretically be used for paging through a result set,
687 * but this is discouraged for performance reasons.
688 *
689 * - LIMIT: Integer: return at most this many rows. The rows are sorted
690 * and then the first rows are taken until the limit is reached. LIMIT
691 * is applied to a result set after OFFSET.
692 *
693 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
694 * changed until the next COMMIT.
695 *
696 * - DISTINCT: Boolean: return only unique result rows.
697 *
698 * - GROUP BY: May be either an SQL fragment string naming a field or
699 * expression to group by, or an array of such SQL fragments.
700 *
701 * - HAVING: May be either an string containing a HAVING clause or an array of
702 * conditions building the HAVING clause. If an array is given, the conditions
703 * constructed from each element are combined with AND.
704 *
705 * - ORDER BY: May be either an SQL fragment giving a field name or
706 * expression to order by, or an array of such SQL fragments.
707 *
708 * - USE INDEX: This may be either a string giving the index name to use
709 * for the query, or an array. If it is an associative array, each key
710 * gives the table name (or alias), each value gives the index name to
711 * use for that table. All strings are SQL fragments and so should be
712 * validated by the caller.
713 *
714 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
715 * instead of SELECT.
716 *
717 * And also the following boolean MySQL extensions, see the MySQL manual
718 * for documentation:
719 *
720 * - LOCK IN SHARE MODE
721 * - STRAIGHT_JOIN
722 * - HIGH_PRIORITY
723 * - SQL_BIG_RESULT
724 * - SQL_BUFFER_RESULT
725 * - SQL_SMALL_RESULT
726 * - SQL_CALC_FOUND_ROWS
727 * - SQL_CACHE
728 * - SQL_NO_CACHE
729 *
730 *
731 * @param string|array $join_conds
732 *
733 * Optional associative array of table-specific join conditions. In the
734 * most common case, this is unnecessary, since the join condition can be
735 * in $conds. However, it is useful for doing a LEFT JOIN.
736 *
737 * The key of the array contains the table name or alias. The value is an
738 * array with two elements, numbered 0 and 1. The first gives the type of
739 * join, the second is the same as the $conds parameter. Thus it can be
740 * an SQL fragment, or an array where the string keys are equality and the
741 * numeric keys are SQL fragments all AND'd together. For example:
742 *
743 * [ 'page' => [ 'LEFT JOIN', 'page_latest=rev_id' ] ]
744 *
745 * @return IResultWrapper Resulting rows
746 * @throws DBError
747 */
748 public function select(
749 $table, $vars, $conds = '', $fname = __METHOD__,
750 $options = [], $join_conds = []
751 );
752
753 /**
754 * The equivalent of IDatabase::select() except that the constructed SQL
755 * is returned, instead of being immediately executed. This can be useful for
756 * doing UNION queries, where the SQL text of each query is needed. In general,
757 * however, callers outside of Database classes should just use select().
758 *
759 * @see IDatabase::select()
760 *
761 * @param string|array $table Table name
762 * @param string|array $vars Field names
763 * @param string|array $conds Conditions
764 * @param string $fname Caller function name
765 * @param string|array $options Query options
766 * @param string|array $join_conds Join conditions
767 * @return string SQL query string
768 */
769 public function selectSQLText(
770 $table, $vars, $conds = '', $fname = __METHOD__,
771 $options = [], $join_conds = []
772 );
773
774 /**
775 * Single row SELECT wrapper. Equivalent to IDatabase::select(), except
776 * that a single row object is returned. If the query returns no rows,
777 * false is returned.
778 *
779 * @param string|array $table Table name
780 * @param string|array $vars Field names
781 * @param array $conds Conditions
782 * @param string $fname Caller function name
783 * @param string|array $options Query options
784 * @param array|string $join_conds Join conditions
785 *
786 * @return stdClass|bool
787 * @throws DBError
788 */
789 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
790 $options = [], $join_conds = []
791 );
792
793 /**
794 * Estimate the number of rows in dataset
795 *
796 * MySQL allows you to estimate the number of rows that would be returned
797 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
798 * index cardinality statistics, and is notoriously inaccurate, especially
799 * when large numbers of rows have recently been added or deleted.
800 *
801 * For DBMSs that don't support fast result size estimation, this function
802 * will actually perform the SELECT COUNT(*).
803 *
804 * Takes the same arguments as IDatabase::select().
805 *
806 * @param string $table Table name
807 * @param string $var Column for which NULL values are not counted [default "*"]
808 * @param array|string $conds Filters on the table
809 * @param string $fname Function name for profiling
810 * @param array $options Options for select
811 * @param array|string $join_conds Join conditions
812 * @return int Row count
813 * @throws DBError
814 */
815 public function estimateRowCount(
816 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
817 );
818
819 /**
820 * Get the number of rows in dataset
821 *
822 * This is useful when trying to do COUNT(*) but with a LIMIT for performance.
823 *
824 * Takes the same arguments as IDatabase::select().
825 *
826 * @since 1.27 Added $join_conds parameter
827 *
828 * @param array|string $tables Table names
829 * @param string $var Column for which NULL values are not counted [default "*"]
830 * @param array|string $conds Filters on the table
831 * @param string $fname Function name for profiling
832 * @param array $options Options for select
833 * @param array $join_conds Join conditions (since 1.27)
834 * @return int Row count
835 * @throws DBError
836 */
837 public function selectRowCount(
838 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
839 );
840
841 /**
842 * Lock all rows meeting the given conditions/options FOR UPDATE
843 *
844 * @param array|string $table Table names
845 * @param array|string $conds Filters on the table
846 * @param string $fname Function name for profiling
847 * @param array $options Options for select ("FOR UPDATE" is added automatically)
848 * @param array $join_conds Join conditions
849 * @return int Number of matching rows found (and locked)
850 * @since 1.32
851 */
852 public function lockForUpdate(
853 $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
854 );
855
856 /**
857 * Determines whether a field exists in a table
858 *
859 * @param string $table Table name
860 * @param string $field Filed to check on that table
861 * @param string $fname Calling function name (optional)
862 * @return bool Whether $table has filed $field
863 * @throws DBError
864 */
865 public function fieldExists( $table, $field, $fname = __METHOD__ );
866
867 /**
868 * Determines whether an index exists
869 * Usually throws a DBQueryError on failure
870 * If errors are explicitly ignored, returns NULL on failure
871 *
872 * @param string $table
873 * @param string $index
874 * @param string $fname
875 * @return bool|null
876 * @throws DBError
877 */
878 public function indexExists( $table, $index, $fname = __METHOD__ );
879
880 /**
881 * Query whether a given table exists
882 *
883 * @param string $table
884 * @param string $fname
885 * @return bool
886 * @throws DBError
887 */
888 public function tableExists( $table, $fname = __METHOD__ );
889
890 /**
891 * INSERT wrapper, inserts an array into a table.
892 *
893 * $a may be either:
894 *
895 * - A single associative array. The array keys are the field names, and
896 * the values are the values to insert. The values are treated as data
897 * and will be quoted appropriately. If NULL is inserted, this will be
898 * converted to a database NULL.
899 * - An array with numeric keys, holding a list of associative arrays.
900 * This causes a multi-row INSERT on DBMSs that support it. The keys in
901 * each subarray must be identical to each other, and in the same order.
902 *
903 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
904 * returns success.
905 *
906 * $options is an array of options, with boolean options encoded as values
907 * with numeric keys, in the same style as $options in
908 * IDatabase::select(). Supported options are:
909 *
910 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
911 * any rows which cause duplicate key errors are not inserted. It's
912 * possible to determine how many rows were successfully inserted using
913 * IDatabase::affectedRows().
914 *
915 * @param string $table Table name. This will be passed through
916 * Database::tableName().
917 * @param array $a Array of rows to insert
918 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
919 * @param array $options Array of options
920 *
921 * @return bool
922 * @throws DBError
923 */
924 public function insert( $table, $a, $fname = __METHOD__, $options = [] );
925
926 /**
927 * UPDATE wrapper. Takes a condition array and a SET array.
928 *
929 * @param string $table Name of the table to UPDATE. This will be passed through
930 * Database::tableName().
931 * @param array $values An array of values to SET. For each array element,
932 * the key gives the field name, and the value gives the data to set
933 * that field to. The data will be quoted by IDatabase::addQuotes().
934 * Values with integer keys form unquoted SET statements, which can be used for
935 * things like "field = field + 1" or similar computed values.
936 * @param array $conds An array of conditions (WHERE). See
937 * IDatabase::select() for the details of the format of condition
938 * arrays. Use '*' to update all rows.
939 * @param string $fname The function name of the caller (from __METHOD__),
940 * for logging and profiling.
941 * @param array $options An array of UPDATE options, can be:
942 * - IGNORE: Ignore unique key conflicts
943 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
944 * @return bool
945 * @throws DBError
946 */
947 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] );
948
949 /**
950 * Makes an encoded list of strings from an array
951 *
952 * These can be used to make conjunctions or disjunctions on SQL condition strings
953 * derived from an array (see IDatabase::select() $conds documentation).
954 *
955 * Example usage:
956 * @code
957 * $sql = $db->makeList( [
958 * 'rev_page' => $id,
959 * $db->makeList( [ 'rev_minor' => 1, 'rev_len' < 500 ], $db::LIST_OR ] )
960 * ], $db::LIST_AND );
961 * @endcode
962 * This would set $sql to "rev_page = '$id' AND (rev_minor = '1' OR rev_len < '500')"
963 *
964 * @param array $a Containing the data
965 * @param int $mode IDatabase class constant:
966 * - IDatabase::LIST_COMMA: Comma separated, no field names
967 * - IDatabase::LIST_AND: ANDed WHERE clause (without the WHERE).
968 * - IDatabase::LIST_OR: ORed WHERE clause (without the WHERE)
969 * - IDatabase::LIST_SET: Comma separated with field names, like a SET clause
970 * - IDatabase::LIST_NAMES: Comma separated field names
971 * @throws DBError
972 * @return string
973 */
974 public function makeList( $a, $mode = self::LIST_COMMA );
975
976 /**
977 * Build a partial where clause from a 2-d array such as used for LinkBatch.
978 * The keys on each level may be either integers or strings.
979 *
980 * @param array $data Organized as 2-d
981 * [ baseKeyVal => [ subKeyVal => [ignored], ... ], ... ]
982 * @param string $baseKey Field name to match the base-level keys to (eg 'pl_namespace')
983 * @param string $subKey Field name to match the sub-level keys to (eg 'pl_title')
984 * @return string|bool SQL fragment, or false if no items in array
985 */
986 public function makeWhereFrom2d( $data, $baseKey, $subKey );
987
988 /**
989 * Return aggregated value alias
990 *
991 * @param array $valuedata
992 * @param string $valuename
993 *
994 * @return string
995 */
996 public function aggregateValue( $valuedata, $valuename = 'value' );
997
998 /**
999 * @param string $field
1000 * @return string
1001 */
1002 public function bitNot( $field );
1003
1004 /**
1005 * @param string $fieldLeft
1006 * @param string $fieldRight
1007 * @return string
1008 */
1009 public function bitAnd( $fieldLeft, $fieldRight );
1010
1011 /**
1012 * @param string $fieldLeft
1013 * @param string $fieldRight
1014 * @return string
1015 */
1016 public function bitOr( $fieldLeft, $fieldRight );
1017
1018 /**
1019 * Build a concatenation list to feed into a SQL query
1020 * @param array $stringList List of raw SQL expressions; caller is
1021 * responsible for any quoting
1022 * @return string
1023 */
1024 public function buildConcat( $stringList );
1025
1026 /**
1027 * Build a GROUP_CONCAT or equivalent statement for a query.
1028 *
1029 * This is useful for combining a field for several rows into a single string.
1030 * NULL values will not appear in the output, duplicated values will appear,
1031 * and the resulting delimiter-separated values have no defined sort order.
1032 * Code using the results may need to use the PHP unique() or sort() methods.
1033 *
1034 * @param string $delim Glue to bind the results together
1035 * @param string|array $table Table name
1036 * @param string $field Field name
1037 * @param string|array $conds Conditions
1038 * @param string|array $join_conds Join conditions
1039 * @return string SQL text
1040 * @since 1.23
1041 */
1042 public function buildGroupConcatField(
1043 $delim, $table, $field, $conds = '', $join_conds = []
1044 );
1045
1046 /**
1047 * Build a SUBSTRING function.
1048 *
1049 * Behavior for non-ASCII values is undefined.
1050 *
1051 * @param string $input Field name
1052 * @param int $startPosition Positive integer
1053 * @param int|null $length Non-negative integer length or null for no limit
1054 * @throws InvalidArgumentException
1055 * @return string SQL text
1056 * @since 1.31
1057 */
1058 public function buildSubString( $input, $startPosition, $length = null );
1059
1060 /**
1061 * @param string $field Field or column to cast
1062 * @return string
1063 * @since 1.28
1064 */
1065 public function buildStringCast( $field );
1066
1067 /**
1068 * @param string $field Field or column to cast
1069 * @return string
1070 * @since 1.31
1071 */
1072 public function buildIntegerCast( $field );
1073
1074 /**
1075 * Equivalent to IDatabase::selectSQLText() except wraps the result in Subqyery
1076 *
1077 * @see IDatabase::selectSQLText()
1078 *
1079 * @param string|array $table Table name
1080 * @param string|array $vars Field names
1081 * @param string|array $conds Conditions
1082 * @param string $fname Caller function name
1083 * @param string|array $options Query options
1084 * @param string|array $join_conds Join conditions
1085 * @return Subquery
1086 * @since 1.31
1087 */
1088 public function buildSelectSubquery(
1089 $table, $vars, $conds = '', $fname = __METHOD__,
1090 $options = [], $join_conds = []
1091 );
1092
1093 /**
1094 * Returns true if DBs are assumed to be on potentially different servers
1095 *
1096 * In systems like mysql/mariadb, different databases can easily be referenced on a single
1097 * connection merely by name, even in a single query via JOIN. On the other hand, Postgres
1098 * treats databases as fully separate, only allowing mechanisms like postgres_fdw to
1099 * effectively "mount" foreign DBs. This is true even among DBs on the same server.
1100 *
1101 * @return bool
1102 * @since 1.29
1103 */
1104 public function databasesAreIndependent();
1105
1106 /**
1107 * Change the current database
1108 *
1109 * @param string $db
1110 * @return bool Success or failure
1111 * @throws DBConnectionError If databasesAreIndependent() is true and an error occurs
1112 */
1113 public function selectDB( $db );
1114
1115 /**
1116 * Get the current DB name
1117 * @return string
1118 */
1119 public function getDBname();
1120
1121 /**
1122 * Get the server hostname or IP address
1123 * @return string
1124 */
1125 public function getServer();
1126
1127 /**
1128 * Adds quotes and backslashes.
1129 *
1130 * @param string|int|null|bool|Blob $s
1131 * @return string|int
1132 */
1133 public function addQuotes( $s );
1134
1135 /**
1136 * LIKE statement wrapper, receives a variable-length argument list with
1137 * parts of pattern to match containing either string literals that will be
1138 * escaped or tokens returned by anyChar() or anyString(). Alternatively,
1139 * the function could be provided with an array of aforementioned
1140 * parameters.
1141 *
1142 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns
1143 * a LIKE clause that searches for subpages of 'My page title'.
1144 * Alternatively:
1145 * $pattern = [ 'My_page_title/', $dbr->anyString() ];
1146 * $query .= $dbr->buildLike( $pattern );
1147 *
1148 * @since 1.16
1149 * @return string Fully built LIKE statement
1150 */
1151 public function buildLike();
1152
1153 /**
1154 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
1155 *
1156 * @return LikeMatch
1157 */
1158 public function anyChar();
1159
1160 /**
1161 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
1162 *
1163 * @return LikeMatch
1164 */
1165 public function anyString();
1166
1167 /**
1168 * Deprecated method, calls should be removed.
1169 *
1170 * This was formerly used for PostgreSQL and Oracle to handle
1171 * self::insertId() auto-incrementing fields. It is no longer necessary
1172 * since DatabasePostgres::insertId() has been reimplemented using
1173 * `lastval()` and Oracle has been reimplemented using triggers.
1174 *
1175 * Implementations should return null if inserting `NULL` into an
1176 * auto-incrementing field works, otherwise it should return an instance of
1177 * NextSequenceValue and filter it on calls to relevant methods.
1178 *
1179 * @deprecated since 1.30, no longer needed
1180 * @param string $seqName
1181 * @return null|NextSequenceValue
1182 */
1183 public function nextSequenceValue( $seqName );
1184
1185 /**
1186 * REPLACE query wrapper.
1187 *
1188 * REPLACE is a very handy MySQL extension, which functions like an INSERT
1189 * except that when there is a duplicate key error, the old row is deleted
1190 * and the new row is inserted in its place.
1191 *
1192 * We simulate this with standard SQL with a DELETE followed by INSERT. To
1193 * perform the delete, we need to know what the unique indexes are so that
1194 * we know how to find the conflicting rows.
1195 *
1196 * It may be more efficient to leave off unique indexes which are unlikely
1197 * to collide. However if you do this, you run the risk of encountering
1198 * errors which wouldn't have occurred in MySQL.
1199 *
1200 * @param string $table The table to replace the row(s) in.
1201 * @param array $uniqueIndexes Either a list of fields that define a unique index or
1202 * an array of such lists if there are multiple unique indexes defined in the schema
1203 * @param array $rows Can be either a single row to insert, or multiple rows,
1204 * in the same format as for IDatabase::insert()
1205 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1206 * @throws DBError
1207 */
1208 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ );
1209
1210 /**
1211 * INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
1212 *
1213 * This updates any conflicting rows (according to the unique indexes) using
1214 * the provided SET clause and inserts any remaining (non-conflicted) rows.
1215 *
1216 * $rows may be either:
1217 * - A single associative array. The array keys are the field names, and
1218 * the values are the values to insert. The values are treated as data
1219 * and will be quoted appropriately. If NULL is inserted, this will be
1220 * converted to a database NULL.
1221 * - An array with numeric keys, holding a list of associative arrays.
1222 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1223 * each subarray must be identical to each other, and in the same order.
1224 *
1225 * It may be more efficient to leave off unique indexes which are unlikely
1226 * to collide. However if you do this, you run the risk of encountering
1227 * errors which wouldn't have occurred in MySQL.
1228 *
1229 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1230 * returns success.
1231 *
1232 * @since 1.22
1233 *
1234 * @param string $table Table name. This will be passed through Database::tableName().
1235 * @param array $rows A single row or list of rows to insert
1236 * @param array $uniqueIndexes Either a list of fields that define a unique index or
1237 * an array of such lists if there are multiple unique indexes defined in the schema
1238 * @param array $set An array of values to SET. For each array element, the
1239 * key gives the field name, and the value gives the data to set that
1240 * field to. The data will be quoted by IDatabase::addQuotes().
1241 * Values with integer keys form unquoted SET statements, which can be used for
1242 * things like "field = field + 1" or similar computed values.
1243 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1244 * @throws DBError
1245 * @return bool
1246 */
1247 public function upsert(
1248 $table, array $rows, array $uniqueIndexes, array $set, $fname = __METHOD__
1249 );
1250
1251 /**
1252 * DELETE where the condition is a join.
1253 *
1254 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
1255 * we use sub-selects
1256 *
1257 * For safety, an empty $conds will not delete everything. If you want to
1258 * delete all rows where the join condition matches, set $conds='*'.
1259 *
1260 * DO NOT put the join condition in $conds.
1261 *
1262 * @param string $delTable The table to delete from.
1263 * @param string $joinTable The other table.
1264 * @param string $delVar The variable to join on, in the first table.
1265 * @param string $joinVar The variable to join on, in the second table.
1266 * @param array $conds Condition array of field names mapped to variables,
1267 * ANDed together in the WHERE clause
1268 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1269 * @throws DBError
1270 */
1271 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
1272 $fname = __METHOD__
1273 );
1274
1275 /**
1276 * DELETE query wrapper.
1277 *
1278 * @param string $table Table name
1279 * @param string|array $conds Array of conditions. See $conds in IDatabase::select()
1280 * for the format. Use $conds == "*" to delete all rows
1281 * @param string $fname Name of the calling function
1282 * @throws DBUnexpectedError
1283 * @return bool|IResultWrapper
1284 * @throws DBError
1285 */
1286 public function delete( $table, $conds, $fname = __METHOD__ );
1287
1288 /**
1289 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
1290 * into another table.
1291 *
1292 * @warning If the insert will use an auto-increment or sequence to
1293 * determine the value of a column, this may break replication on
1294 * databases using statement-based replication if the SELECT is not
1295 * deterministically ordered.
1296 *
1297 * @param string $destTable The table name to insert into
1298 * @param string|array $srcTable May be either a table name, or an array of table names
1299 * to include in a join.
1300 *
1301 * @param array $varMap Must be an associative array of the form
1302 * [ 'dest1' => 'source1', ... ]. Source items may be literals
1303 * rather than field names, but strings should be quoted with
1304 * IDatabase::addQuotes()
1305 *
1306 * @param array $conds Condition array. See $conds in IDatabase::select() for
1307 * the details of the format of condition arrays. May be "*" to copy the
1308 * whole table.
1309 *
1310 * @param string $fname The function name of the caller, from __METHOD__
1311 *
1312 * @param array $insertOptions Options for the INSERT part of the query, see
1313 * IDatabase::insert() for details. Also, one additional option is
1314 * available: pass 'NO_AUTO_COLUMNS' to hint that the query does not use
1315 * an auto-increment or sequence to determine any column values.
1316 * @param array $selectOptions Options for the SELECT part of the query, see
1317 * IDatabase::select() for details.
1318 * @param array $selectJoinConds Join conditions for the SELECT part of the query, see
1319 * IDatabase::select() for details.
1320 *
1321 * @return bool
1322 * @throws DBError
1323 */
1324 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
1325 $fname = __METHOD__,
1326 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
1327 );
1328
1329 /**
1330 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
1331 * within the UNION construct.
1332 * @return bool
1333 */
1334 public function unionSupportsOrderAndLimit();
1335
1336 /**
1337 * Construct a UNION query
1338 * This is used for providing overload point for other DB abstractions
1339 * not compatible with the MySQL syntax.
1340 * @param array $sqls SQL statements to combine
1341 * @param bool $all Use UNION ALL
1342 * @return string SQL fragment
1343 */
1344 public function unionQueries( $sqls, $all );
1345
1346 /**
1347 * Construct a UNION query for permutations of conditions
1348 *
1349 * Databases sometimes have trouble with queries that have multiple values
1350 * for multiple condition parameters combined with limits and ordering.
1351 * This method constructs queries for the Cartesian product of the
1352 * conditions and unions them all together.
1353 *
1354 * @see IDatabase::select()
1355 * @since 1.30
1356 * @param string|array $table Table name
1357 * @param string|array $vars Field names
1358 * @param array $permute_conds Conditions for the Cartesian product. Keys
1359 * are field names, values are arrays of the possible values for that
1360 * field.
1361 * @param string|array $extra_conds Additional conditions to include in the
1362 * query.
1363 * @param string $fname Caller function name
1364 * @param string|array $options Query options. In addition to the options
1365 * recognized by IDatabase::select(), the following may be used:
1366 * - NOTALL: Set to use UNION instead of UNION ALL.
1367 * - INNER ORDER BY: If specified and supported, subqueries will use this
1368 * instead of ORDER BY.
1369 * @param string|array $join_conds Join conditions
1370 * @return string SQL query string.
1371 */
1372 public function unionConditionPermutations(
1373 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
1374 $options = [], $join_conds = []
1375 );
1376
1377 /**
1378 * Returns an SQL expression for a simple conditional. This doesn't need
1379 * to be overridden unless CASE isn't supported in your DBMS.
1380 *
1381 * @param string|array $cond SQL expression which will result in a boolean value
1382 * @param string $trueVal SQL expression to return if true
1383 * @param string $falseVal SQL expression to return if false
1384 * @return string SQL fragment
1385 */
1386 public function conditional( $cond, $trueVal, $falseVal );
1387
1388 /**
1389 * Returns a command for str_replace function in SQL query.
1390 * Uses REPLACE() in MySQL
1391 *
1392 * @param string $orig Column to modify
1393 * @param string $old Column to seek
1394 * @param string $new Column to replace with
1395 *
1396 * @return string
1397 */
1398 public function strreplace( $orig, $old, $new );
1399
1400 /**
1401 * Determines how long the server has been up
1402 *
1403 * @return int
1404 * @throws DBError
1405 */
1406 public function getServerUptime();
1407
1408 /**
1409 * Determines if the last failure was due to a deadlock
1410 *
1411 * Note that during a deadlock, the prior transaction will have been lost
1412 *
1413 * @return bool
1414 */
1415 public function wasDeadlock();
1416
1417 /**
1418 * Determines if the last failure was due to a lock timeout
1419 *
1420 * Note that during a lock wait timeout, the prior transaction will have been lost
1421 *
1422 * @return bool
1423 */
1424 public function wasLockTimeout();
1425
1426 /**
1427 * Determines if the last query error was due to a dropped connection
1428 *
1429 * Note that during a connection loss, the prior transaction will have been lost
1430 *
1431 * @return bool
1432 * @since 1.31
1433 */
1434 public function wasConnectionLoss();
1435
1436 /**
1437 * Determines if the last failure was due to the database being read-only.
1438 *
1439 * @return bool
1440 */
1441 public function wasReadOnlyError();
1442
1443 /**
1444 * Determines if the last query error was due to something outside of the query itself
1445 *
1446 * Note that the transaction may have been lost, discarding prior writes and results
1447 *
1448 * @return bool
1449 */
1450 public function wasErrorReissuable();
1451
1452 /**
1453 * Wait for the replica DB to catch up to a given master position
1454 *
1455 * @param DBMasterPos $pos
1456 * @param int $timeout The maximum number of seconds to wait for synchronisation
1457 * @return int|null Zero if the replica DB was past that position already,
1458 * greater than zero if we waited for some period of time, less than
1459 * zero if it timed out, and null on error
1460 * @throws DBError
1461 */
1462 public function masterPosWait( DBMasterPos $pos, $timeout );
1463
1464 /**
1465 * Get the replication position of this replica DB
1466 *
1467 * @return DBMasterPos|bool False if this is not a replica DB
1468 * @throws DBError
1469 */
1470 public function getReplicaPos();
1471
1472 /**
1473 * Get the position of this master
1474 *
1475 * @return DBMasterPos|bool False if this is not a master
1476 * @throws DBError
1477 */
1478 public function getMasterPos();
1479
1480 /**
1481 * @return bool Whether the DB is marked as read-only server-side
1482 * @since 1.28
1483 */
1484 public function serverIsReadOnly();
1485
1486 /**
1487 * Run a callback as soon as the current transaction commits or rolls back.
1488 * An error is thrown if no transaction is pending. Queries in the function will run in
1489 * AUTOCOMMIT mode unless there are begin() calls. Callbacks must commit any transactions
1490 * that they begin.
1491 *
1492 * This is useful for combining cooperative locks and DB transactions.
1493 *
1494 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1495 *
1496 * The callback takes the following arguments:
1497 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
1498 * - This IDatabase instance (since 1.32)
1499 *
1500 * @param callable $callback
1501 * @param string $fname Caller name
1502 * @return mixed
1503 * @since 1.28
1504 */
1505 public function onTransactionResolution( callable $callback, $fname = __METHOD__ );
1506
1507 /**
1508 * Run a callback as soon as there is no transaction pending.
1509 * If there is a transaction and it is rolled back, then the callback is cancelled.
1510 *
1511 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1512 * of the round, just after all peer transactions COMMIT. If the transaction round
1513 * is rolled back, then the callback is cancelled.
1514 *
1515 * Queries in the function will run in AUTOCOMMIT mode unless there are begin() calls.
1516 * Callbacks must commit any transactions that they begin.
1517 *
1518 * This is useful for updates to different systems or when separate transactions are needed.
1519 * For example, one might want to enqueue jobs into a system outside the database, but only
1520 * after the database is updated so that the jobs will see the data when they actually run.
1521 * It can also be used for updates that easily suffer from lock timeouts and deadlocks,
1522 * but where atomicity is not essential.
1523 *
1524 * Avoid using IDatabase instances aside from this one in the callback, unless such instances
1525 * never have IDatabase::DBO_TRX set. This keeps callbacks from interfering with one another.
1526 *
1527 * Updates will execute in the order they were enqueued.
1528 *
1529 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1530 *
1531 * The callback takes the following arguments:
1532 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
1533 * - This IDatabase instance (since 1.32)
1534 *
1535 * @param callable $callback
1536 * @param string $fname Caller name
1537 * @since 1.32
1538 */
1539 public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ );
1540
1541 /**
1542 * Alias for onTransactionCommitOrIdle() for backwards-compatibility
1543 *
1544 * @param callable $callback
1545 * @param string $fname
1546 * @return mixed
1547 * @since 1.20
1548 * @deprecated Since 1.32
1549 */
1550 public function onTransactionIdle( callable $callback, $fname = __METHOD__ );
1551
1552 /**
1553 * Run a callback before the current transaction commits or now if there is none.
1554 * If there is a transaction and it is rolled back, then the callback is cancelled.
1555 *
1556 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1557 * of the round, just before all peer transactions COMMIT. If the transaction round
1558 * is rolled back, then the callback is cancelled.
1559 *
1560 * Callbacks must not start nor commit any transactions. If no transaction is active,
1561 * then a transaction will wrap the callback.
1562 *
1563 * This is useful for updates that easily suffer from lock timeouts and deadlocks,
1564 * but where atomicity is strongly desired for these updates and some related updates.
1565 *
1566 * Updates will execute in the order they were enqueued.
1567 *
1568 * The callback takes the one argument:
1569 * - This IDatabase instance (since 1.32)
1570 *
1571 * @param callable $callback
1572 * @param string $fname Caller name
1573 * @since 1.22
1574 */
1575 public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ );
1576
1577 /**
1578 * Run a callback each time any transaction commits or rolls back
1579 *
1580 * The callback takes two arguments:
1581 * - IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK
1582 * - This IDatabase object
1583 * Callbacks must commit any transactions that they begin.
1584 *
1585 * Registering a callback here will not affect writesOrCallbacks() pending.
1586 *
1587 * Since callbacks from this or onTransactionCommitOrIdle() can start and end transactions,
1588 * a single call to IDatabase::commit might trigger multiple runs of the listener callbacks.
1589 *
1590 * @param string $name Callback name
1591 * @param callable|null $callback Use null to unset a listener
1592 * @return mixed
1593 * @since 1.28
1594 */
1595 public function setTransactionListener( $name, callable $callback = null );
1596
1597 /**
1598 * Begin an atomic section of SQL statements
1599 *
1600 * Start an implicit transaction if no transaction is already active, set a savepoint
1601 * (if $cancelable is ATOMIC_CANCELABLE), and track the given section name to enforce
1602 * that the transaction is not committed prematurely. The end of the section must be
1603 * signified exactly once, either by endAtomic() or cancelAtomic(). Sections can have
1604 * have layers of inner sections (sub-sections), but all sections must be ended in order
1605 * of innermost to outermost. Transactions cannot be started or committed until all
1606 * atomic sections are closed.
1607 *
1608 * ATOMIC_CANCELABLE is useful when the caller needs to handle specific failure cases
1609 * by discarding the section's writes. This should not be used for failures when:
1610 * - upsert() could easily be used instead
1611 * - insert() with IGNORE could easily be used instead
1612 * - select() with FOR UPDATE could be checked before issuing writes instead
1613 * - The failure is from code that runs after the first write but doesn't need to
1614 * - The failures are from contention solvable via onTransactionPreCommitOrIdle()
1615 * - The failures are deadlocks; the RDBMs usually discard the whole transaction
1616 *
1617 * @note callers must use additional measures for situations involving two or more
1618 * (peer) transactions (e.g. updating two database servers at once). The transaction
1619 * and savepoint logic of this method only applies to this specific IDatabase instance.
1620 *
1621 * Example usage:
1622 * @code
1623 * // Start a transaction if there isn't one already
1624 * $dbw->startAtomic( __METHOD__ );
1625 * // Serialize these thread table updates
1626 * $dbw->select( 'thread', '1', [ 'td_id' => $tid ], __METHOD__, 'FOR UPDATE' );
1627 * // Add a new comment for the thread
1628 * $dbw->insert( 'comment', $row, __METHOD__ );
1629 * $cid = $db->insertId();
1630 * // Update thread reference to last comment
1631 * $dbw->update( 'thread', [ 'td_latest' => $cid ], [ 'td_id' => $tid ], __METHOD__ );
1632 * // Demark the end of this conceptual unit of updates
1633 * $dbw->endAtomic( __METHOD__ );
1634 * @endcode
1635 *
1636 * Example usage (atomic changes that might have to be discarded):
1637 * @code
1638 * // Start a transaction if there isn't one already
1639 * $sectionId = $dbw->startAtomic( __METHOD__, $dbw::ATOMIC_CANCELABLE );
1640 * // Create new record metadata row
1641 * $dbw->insert( 'records', $row, __METHOD__ );
1642 * // Figure out where to store the data based on the new row's ID
1643 * $path = $recordDirectory . '/' . $dbw->insertId();
1644 * // Write the record data to the storage system
1645 * $status = $fileBackend->create( [ 'dst' => $path, 'content' => $data ] );
1646 * if ( $status->isOK() ) {
1647 * // Try to cleanup files orphaned by transaction rollback
1648 * $dbw->onTransactionResolution(
1649 * function ( $type ) use ( $fileBackend, $path ) {
1650 * if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
1651 * $fileBackend->delete( [ 'src' => $path ] );
1652 * }
1653 * },
1654 * __METHOD__
1655 * );
1656 * // Demark the end of this conceptual unit of updates
1657 * $dbw->endAtomic( __METHOD__ );
1658 * } else {
1659 * // Discard these writes from the transaction (preserving prior writes)
1660 * $dbw->cancelAtomic( __METHOD__, $sectionId );
1661 * }
1662 * @endcode
1663 *
1664 * @since 1.23
1665 * @param string $fname
1666 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1667 * savepoint and enable self::cancelAtomic() for this section.
1668 * @return AtomicSectionIdentifier section ID token
1669 * @throws DBError
1670 */
1671 public function startAtomic( $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE );
1672
1673 /**
1674 * Ends an atomic section of SQL statements
1675 *
1676 * Ends the next section of atomic SQL statements and commits the transaction
1677 * if necessary.
1678 *
1679 * @since 1.23
1680 * @see IDatabase::startAtomic
1681 * @param string $fname
1682 * @throws DBError
1683 */
1684 public function endAtomic( $fname = __METHOD__ );
1685
1686 /**
1687 * Cancel an atomic section of SQL statements
1688 *
1689 * This will roll back only the statements executed since the start of the
1690 * most recent atomic section, and close that section. If a transaction was
1691 * open before the corresponding startAtomic() call, any statements before
1692 * that call are *not* rolled back and the transaction remains open. If the
1693 * corresponding startAtomic() implicitly started a transaction, that
1694 * transaction is rolled back.
1695 *
1696 * @note callers must use additional measures for situations involving two or more
1697 * (peer) transactions (e.g. updating two database servers at once). The transaction
1698 * and savepoint logic of startAtomic() are bound to specific IDatabase instances.
1699 *
1700 * Note that a call to IDatabase::rollback() will also roll back any open atomic sections.
1701 *
1702 * @note As a micro-optimization to save a few DB calls, this method may only
1703 * be called when startAtomic() was called with the ATOMIC_CANCELABLE flag.
1704 * @since 1.31
1705 * @see IDatabase::startAtomic
1706 * @param string $fname
1707 * @param AtomicSectionIdentifier|null $sectionId Section ID from startAtomic();
1708 * passing this enables cancellation of unclosed nested sections [optional]
1709 * @throws DBError
1710 */
1711 public function cancelAtomic( $fname = __METHOD__, AtomicSectionIdentifier $sectionId = null );
1712
1713 /**
1714 * Perform an atomic section of reversable SQL statements from a callback
1715 *
1716 * The $callback takes the following arguments:
1717 * - This database object
1718 * - The value of $fname
1719 *
1720 * This will execute the callback inside a pair of startAtomic()/endAtomic() calls.
1721 * If any exception occurs during execution of the callback, it will be handled as follows:
1722 * - If $cancelable is ATOMIC_CANCELABLE, cancelAtomic() will be called to back out any
1723 * (and only) statements executed during the atomic section. If that succeeds, then the
1724 * exception will be re-thrown; if it fails, then a different exception will be thrown
1725 * and any further query attempts will fail until rollback() is called.
1726 * - If $cancelable is ATOMIC_NOT_CANCELABLE, cancelAtomic() will be called to mark the
1727 * end of the section and the error will be re-thrown. Any further query attempts will
1728 * fail until rollback() is called.
1729 *
1730 * This method is convenient for letting calls to the caller of this method be wrapped
1731 * in a try/catch blocks for exception types that imply that the caller failed but was
1732 * able to properly discard the changes it made in the transaction. This method can be
1733 * an alternative to explicit calls to startAtomic()/endAtomic()/cancelAtomic().
1734 *
1735 * Example usage, "RecordStore::save" method:
1736 * @code
1737 * $dbw->doAtomicSection( __METHOD__, function ( $dbw ) use ( $record ) {
1738 * // Create new record metadata row
1739 * $dbw->insert( 'records', $record->toArray(), __METHOD__ );
1740 * // Figure out where to store the data based on the new row's ID
1741 * $path = $this->recordDirectory . '/' . $dbw->insertId();
1742 * // Write the record data to the storage system;
1743 * // blob store throughs StoreFailureException on failure
1744 * $this->blobStore->create( $path, $record->getJSON() );
1745 * // Try to cleanup files orphaned by transaction rollback
1746 * $dbw->onTransactionResolution(
1747 * function ( $type ) use ( $path ) {
1748 * if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
1749 * $this->blobStore->delete( $path );
1750 * }
1751 * },
1752 * __METHOD__
1753 * );
1754 * }, $dbw::ATOMIC_CANCELABLE );
1755 * @endcode
1756 *
1757 * Example usage, caller of the "RecordStore::save" method:
1758 * @code
1759 * $dbw->startAtomic( __METHOD__ );
1760 * // ...various SQL writes happen...
1761 * try {
1762 * $recordStore->save( $record );
1763 * } catch ( StoreFailureException $e ) {
1764 * // ...various SQL writes happen...
1765 * }
1766 * // ...various SQL writes happen...
1767 * $dbw->endAtomic( __METHOD__ );
1768 * @endcode
1769 *
1770 * @see Database::startAtomic
1771 * @see Database::endAtomic
1772 * @see Database::cancelAtomic
1773 *
1774 * @param string $fname Caller name (usually __METHOD__)
1775 * @param callable $callback Callback that issues DB updates
1776 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1777 * savepoint and enable self::cancelAtomic() for this section.
1778 * @return mixed $res Result of the callback (since 1.28)
1779 * @throws DBError
1780 * @throws RuntimeException
1781 * @since 1.27; prior to 1.31 this did a rollback() instead of
1782 * cancelAtomic(), and assumed no callers up the stack would ever try to
1783 * catch the exception.
1784 */
1785 public function doAtomicSection(
1786 $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
1787 );
1788
1789 /**
1790 * Begin a transaction. If a transaction is already in progress,
1791 * that transaction will be committed before the new transaction is started.
1792 *
1793 * Only call this from code with outer transcation scope.
1794 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1795 * Nesting of transactions is not supported.
1796 *
1797 * Note that when the DBO_TRX flag is set (which is usually the case for web
1798 * requests, but not for maintenance scripts), any previous database query
1799 * will have started a transaction automatically.
1800 *
1801 * Nesting of transactions is not supported. Attempts to nest transactions
1802 * will cause a warning, unless the current transaction was started
1803 * automatically because of the DBO_TRX flag.
1804 *
1805 * @param string $fname Calling function name
1806 * @param string $mode A situationally valid IDatabase::TRANSACTION_* constant [optional]
1807 * @throws DBError
1808 */
1809 public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT );
1810
1811 /**
1812 * Commits a transaction previously started using begin().
1813 * If no transaction is in progress, a warning is issued.
1814 *
1815 * Only call this from code with outer transcation scope.
1816 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1817 * Nesting of transactions is not supported.
1818 *
1819 * @param string $fname
1820 * @param string $flush Flush flag, set to situationally valid IDatabase::FLUSHING_*
1821 * constant to disable warnings about explicitly committing implicit transactions,
1822 * or calling commit when no transaction is in progress.
1823 *
1824 * This will trigger an exception if there is an ongoing explicit transaction.
1825 *
1826 * Only set the flush flag if you are sure that these warnings are not applicable,
1827 * and no explicit transactions are open.
1828 *
1829 * @throws DBError
1830 */
1831 public function commit( $fname = __METHOD__, $flush = '' );
1832
1833 /**
1834 * Rollback a transaction previously started using begin().
1835 * If no transaction is in progress, a warning is issued.
1836 *
1837 * Only call this from code with outer transcation scope.
1838 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1839 * Nesting of transactions is not supported. If a serious unexpected error occurs,
1840 * throwing an Exception is preferrable, using a pre-installed error handler to trigger
1841 * rollback (in any case, failure to issue COMMIT will cause rollback server-side).
1842 *
1843 * Query, connection, and onTransaction* callback errors will be suppressed and logged.
1844 *
1845 * @param string $fname Calling function name
1846 * @param string $flush Flush flag, set to a situationally valid IDatabase::FLUSHING_*
1847 * constant to disable warnings about calling rollback when no transaction is in
1848 * progress. This will silently break any ongoing explicit transaction. Only set the
1849 * flush flag if you are sure that it is safe to ignore these warnings in your context.
1850 * @throws DBError
1851 * @since 1.23 Added $flush parameter
1852 */
1853 public function rollback( $fname = __METHOD__, $flush = '' );
1854
1855 /**
1856 * Commit any transaction but error out if writes or callbacks are pending
1857 *
1858 * This is intended for clearing out REPEATABLE-READ snapshots so that callers can
1859 * see a new point-in-time of the database. This is useful when one of many transaction
1860 * rounds finished and significant time will pass in the script's lifetime. It is also
1861 * useful to call on a replica DB after waiting on replication to catch up to the master.
1862 *
1863 * @param string $fname Calling function name
1864 * @throws DBError
1865 * @since 1.28
1866 */
1867 public function flushSnapshot( $fname = __METHOD__ );
1868
1869 /**
1870 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1871 * to the format used for inserting into timestamp fields in this DBMS.
1872 *
1873 * The result is unquoted, and needs to be passed through addQuotes()
1874 * before it can be included in raw SQL.
1875 *
1876 * @param string|int $ts
1877 *
1878 * @return string
1879 */
1880 public function timestamp( $ts = 0 );
1881
1882 /**
1883 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1884 * to the format used for inserting into timestamp fields in this DBMS. If
1885 * NULL is input, it is passed through, allowing NULL values to be inserted
1886 * into timestamp fields.
1887 *
1888 * The result is unquoted, and needs to be passed through addQuotes()
1889 * before it can be included in raw SQL.
1890 *
1891 * @param string|int|null $ts
1892 *
1893 * @return string
1894 */
1895 public function timestampOrNull( $ts = null );
1896
1897 /**
1898 * Ping the server and try to reconnect if it there is no connection
1899 *
1900 * @param float|null &$rtt Value to store the estimated RTT [optional]
1901 * @return bool Success or failure
1902 */
1903 public function ping( &$rtt = null );
1904
1905 /**
1906 * Get the amount of replication lag for this database server
1907 *
1908 * Callers should avoid using this method while a transaction is active
1909 *
1910 * @return int|bool Database replication lag in seconds or false on error
1911 * @throws DBError
1912 */
1913 public function getLag();
1914
1915 /**
1916 * Get the replica DB lag when the current transaction started
1917 * or a general lag estimate if not transaction is active
1918 *
1919 * This is useful when transactions might use snapshot isolation
1920 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
1921 * is this lag plus transaction duration. If they don't, it is still
1922 * safe to be pessimistic. In AUTOCOMMIT mode, this still gives an
1923 * indication of the staleness of subsequent reads.
1924 *
1925 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
1926 * @throws DBError
1927 * @since 1.27
1928 */
1929 public function getSessionLagStatus();
1930
1931 /**
1932 * Return the maximum number of items allowed in a list, or 0 for unlimited.
1933 *
1934 * @return int
1935 */
1936 public function maxListLen();
1937
1938 /**
1939 * Some DBMSs have a special format for inserting into blob fields, they
1940 * don't allow simple quoted strings to be inserted. To insert into such
1941 * a field, pass the data through this function before passing it to
1942 * IDatabase::insert().
1943 *
1944 * @param string $b
1945 * @return string|Blob
1946 */
1947 public function encodeBlob( $b );
1948
1949 /**
1950 * Some DBMSs return a special placeholder object representing blob fields
1951 * in result objects. Pass the object through this function to return the
1952 * original string.
1953 *
1954 * @param string|Blob $b
1955 * @return string
1956 */
1957 public function decodeBlob( $b );
1958
1959 /**
1960 * Override database's default behavior. $options include:
1961 * 'connTimeout' : Set the connection timeout value in seconds.
1962 * May be useful for very long batch queries such as
1963 * full-wiki dumps, where a single query reads out over
1964 * hours or days.
1965 *
1966 * @param array $options
1967 * @return void
1968 * @throws DBError
1969 */
1970 public function setSessionOptions( array $options );
1971
1972 /**
1973 * Set variables to be used in sourceFile/sourceStream, in preference to the
1974 * ones in $GLOBALS. If an array is set here, $GLOBALS will not be used at
1975 * all. If it's set to false, $GLOBALS will be used.
1976 *
1977 * @param bool|array $vars Mapping variable name to value.
1978 */
1979 public function setSchemaVars( $vars );
1980
1981 /**
1982 * Check to see if a named lock is not locked by any thread (non-blocking)
1983 *
1984 * @param string $lockName Name of lock to poll
1985 * @param string $method Name of method calling us
1986 * @return bool
1987 * @throws DBError
1988 * @since 1.20
1989 */
1990 public function lockIsFree( $lockName, $method );
1991
1992 /**
1993 * Acquire a named lock
1994 *
1995 * Named locks are not related to transactions
1996 *
1997 * @param string $lockName Name of lock to aquire
1998 * @param string $method Name of the calling method
1999 * @param int $timeout Acquisition timeout in seconds
2000 * @return bool
2001 * @throws DBError
2002 */
2003 public function lock( $lockName, $method, $timeout = 5 );
2004
2005 /**
2006 * Release a lock
2007 *
2008 * Named locks are not related to transactions
2009 *
2010 * @param string $lockName Name of lock to release
2011 * @param string $method Name of the calling method
2012 *
2013 * @return int Returns 1 if the lock was released, 0 if the lock was not established
2014 * by this thread (in which case the lock is not released), and NULL if the named lock
2015 * did not exist
2016 *
2017 * @throws DBError
2018 */
2019 public function unlock( $lockName, $method );
2020
2021 /**
2022 * Acquire a named lock, flush any transaction, and return an RAII style unlocker object
2023 *
2024 * Only call this from outer transcation scope and when only one DB will be affected.
2025 * See https://www.mediawiki.org/wiki/Database_transactions for details.
2026 *
2027 * This is suitiable for transactions that need to be serialized using cooperative locks,
2028 * where each transaction can see each others' changes. Any transaction is flushed to clear
2029 * out stale REPEATABLE-READ snapshot data. Once the returned object falls out of PHP scope,
2030 * the lock will be released unless a transaction is active. If one is active, then the lock
2031 * will be released when it either commits or rolls back.
2032 *
2033 * If the lock acquisition failed, then no transaction flush happens, and null is returned.
2034 *
2035 * @param string $lockKey Name of lock to release
2036 * @param string $fname Name of the calling method
2037 * @param int $timeout Acquisition timeout in seconds
2038 * @return ScopedCallback|null
2039 * @throws DBError
2040 * @since 1.27
2041 */
2042 public function getScopedLockAndFlush( $lockKey, $fname, $timeout );
2043
2044 /**
2045 * Check to see if a named lock used by lock() use blocking queues
2046 *
2047 * @return bool
2048 * @since 1.26
2049 */
2050 public function namedLocksEnqueue();
2051
2052 /**
2053 * Find out when 'infinity' is. Most DBMSes support this. This is a special
2054 * keyword for timestamps in PostgreSQL, and works with CHAR(14) as well
2055 * because "i" sorts after all numbers.
2056 *
2057 * @return string
2058 */
2059 public function getInfinity();
2060
2061 /**
2062 * Encode an expiry time into the DBMS dependent format
2063 *
2064 * @param string $expiry Timestamp for expiry, or the 'infinity' string
2065 * @return string
2066 */
2067 public function encodeExpiry( $expiry );
2068
2069 /**
2070 * Decode an expiry time into a DBMS independent format
2071 *
2072 * @param string $expiry DB timestamp field value for expiry
2073 * @param int $format TS_* constant, defaults to TS_MW
2074 * @return string
2075 */
2076 public function decodeExpiry( $expiry, $format = TS_MW );
2077
2078 /**
2079 * Allow or deny "big selects" for this session only. This is done by setting
2080 * the sql_big_selects session variable.
2081 *
2082 * This is a MySQL-specific feature.
2083 *
2084 * @param bool|string $value True for allow, false for deny, or "default" to
2085 * restore the initial value
2086 */
2087 public function setBigSelects( $value = true );
2088
2089 /**
2090 * @return bool Whether this DB is read-only
2091 * @since 1.27
2092 */
2093 public function isReadOnly();
2094
2095 /**
2096 * Make certain table names use their own database, schema, and table prefix
2097 * when passed into SQL queries pre-escaped and without a qualified database name
2098 *
2099 * For example, "user" can be converted to "myschema.mydbname.user" for convenience.
2100 * Appearances like `user`, somedb.user, somedb.someschema.user will used literally.
2101 *
2102 * Calling this twice will completely clear any old table aliases. Also, note that
2103 * callers are responsible for making sure the schemas and databases actually exist.
2104 *
2105 * @param array[] $aliases Map of (table => (dbname, schema, prefix) map)
2106 * @since 1.28
2107 */
2108 public function setTableAliases( array $aliases );
2109
2110 /**
2111 * Convert certain index names to alternative names before querying the DB
2112 *
2113 * Note that this applies to indexes regardless of the table they belong to.
2114 *
2115 * This can be employed when an index was renamed X => Y in code, but the new Y-named
2116 * indexes were not yet built on all DBs. After all the Y-named ones are added by the DBA,
2117 * the aliases can be removed, and then the old X-named indexes dropped.
2118 *
2119 * @param string[] $aliases
2120 * @return mixed
2121 * @since 1.31
2122 */
2123 public function setIndexAliases( array $aliases );
2124 }
2125
2126 /**
2127 * @deprecated since 1.29
2128 */
2129 class_alias( IDatabase::class, 'IDatabase' );