Merge "Add MessagesBi.php"
[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 transactions (assuming no callbacks are registered).
490 * If a transaction is still open anyway, it will be committed if possible.
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 * @param string|array $options
674 *
675 * Optional: Array of query options. Boolean options are specified by
676 * including them in the array as a string value with a numeric key, for
677 * example:
678 *
679 * [ 'FOR UPDATE' ]
680 *
681 * The supported options are:
682 *
683 * - OFFSET: Skip this many rows at the start of the result set. OFFSET
684 * with LIMIT can theoretically be used for paging through a result set,
685 * but this is discouraged for performance reasons.
686 *
687 * - LIMIT: Integer: return at most this many rows. The rows are sorted
688 * and then the first rows are taken until the limit is reached. LIMIT
689 * is applied to a result set after OFFSET.
690 *
691 * - FOR UPDATE: Boolean: lock the returned rows so that they can't be
692 * changed until the next COMMIT.
693 *
694 * - DISTINCT: Boolean: return only unique result rows.
695 *
696 * - GROUP BY: May be either an SQL fragment string naming a field or
697 * expression to group by, or an array of such SQL fragments.
698 *
699 * - HAVING: May be either an string containing a HAVING clause or an array of
700 * conditions building the HAVING clause. If an array is given, the conditions
701 * constructed from each element are combined with AND.
702 *
703 * - ORDER BY: May be either an SQL fragment giving a field name or
704 * expression to order by, or an array of such SQL fragments.
705 *
706 * - USE INDEX: This may be either a string giving the index name to use
707 * for the query, or an array. If it is an associative array, each key
708 * gives the table name (or alias), each value gives the index name to
709 * use for that table. All strings are SQL fragments and so should be
710 * validated by the caller.
711 *
712 * - EXPLAIN: In MySQL, this causes an EXPLAIN SELECT query to be run,
713 * instead of SELECT.
714 *
715 * And also the following boolean MySQL extensions, see the MySQL manual
716 * for documentation:
717 *
718 * - LOCK IN SHARE MODE
719 * - STRAIGHT_JOIN
720 * - HIGH_PRIORITY
721 * - SQL_BIG_RESULT
722 * - SQL_BUFFER_RESULT
723 * - SQL_SMALL_RESULT
724 * - SQL_CALC_FOUND_ROWS
725 * - SQL_CACHE
726 * - SQL_NO_CACHE
727 *
728 *
729 * @param string|array $join_conds
730 *
731 * Optional associative array of table-specific join conditions. In the
732 * most common case, this is unnecessary, since the join condition can be
733 * in $conds. However, it is useful for doing a LEFT JOIN.
734 *
735 * The key of the array contains the table name or alias. The value is an
736 * array with two elements, numbered 0 and 1. The first gives the type of
737 * join, the second is the same as the $conds parameter. Thus it can be
738 * an SQL fragment, or an array where the string keys are equality and the
739 * numeric keys are SQL fragments all AND'd together. For example:
740 *
741 * [ 'page' => [ 'LEFT JOIN', 'page_latest=rev_id' ] ]
742 *
743 * @return IResultWrapper Resulting rows
744 * @throws DBError
745 */
746 public function select(
747 $table, $vars, $conds = '', $fname = __METHOD__,
748 $options = [], $join_conds = []
749 );
750
751 /**
752 * The equivalent of IDatabase::select() except that the constructed SQL
753 * is returned, instead of being immediately executed. This can be useful for
754 * doing UNION queries, where the SQL text of each query is needed. In general,
755 * however, callers outside of Database classes should just use select().
756 *
757 * @see IDatabase::select()
758 *
759 * @param string|array $table Table name
760 * @param string|array $vars Field names
761 * @param string|array $conds Conditions
762 * @param string $fname Caller function name
763 * @param string|array $options Query options
764 * @param string|array $join_conds Join conditions
765 * @return string SQL query string
766 */
767 public function selectSQLText(
768 $table, $vars, $conds = '', $fname = __METHOD__,
769 $options = [], $join_conds = []
770 );
771
772 /**
773 * Single row SELECT wrapper. Equivalent to IDatabase::select(), except
774 * that a single row object is returned. If the query returns no rows,
775 * false is returned.
776 *
777 * @param string|array $table Table name
778 * @param string|array $vars Field names
779 * @param array $conds Conditions
780 * @param string $fname Caller function name
781 * @param string|array $options Query options
782 * @param array|string $join_conds Join conditions
783 *
784 * @return stdClass|bool
785 * @throws DBError
786 */
787 public function selectRow( $table, $vars, $conds, $fname = __METHOD__,
788 $options = [], $join_conds = []
789 );
790
791 /**
792 * Estimate the number of rows in dataset
793 *
794 * MySQL allows you to estimate the number of rows that would be returned
795 * by a SELECT query, using EXPLAIN SELECT. The estimate is provided using
796 * index cardinality statistics, and is notoriously inaccurate, especially
797 * when large numbers of rows have recently been added or deleted.
798 *
799 * For DBMSs that don't support fast result size estimation, this function
800 * will actually perform the SELECT COUNT(*).
801 *
802 * Takes the same arguments as IDatabase::select().
803 *
804 * @param string $table Table name
805 * @param string $var Column for which NULL values are not counted [default "*"]
806 * @param array|string $conds Filters on the table
807 * @param string $fname Function name for profiling
808 * @param array $options Options for select
809 * @param array|string $join_conds Join conditions
810 * @return int Row count
811 * @throws DBError
812 */
813 public function estimateRowCount(
814 $table, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
815 );
816
817 /**
818 * Get the number of rows in dataset
819 *
820 * This is useful when trying to do COUNT(*) but with a LIMIT for performance.
821 *
822 * Takes the same arguments as IDatabase::select().
823 *
824 * @since 1.27 Added $join_conds parameter
825 *
826 * @param array|string $tables Table names
827 * @param string $var Column for which NULL values are not counted [default "*"]
828 * @param array|string $conds Filters on the table
829 * @param string $fname Function name for profiling
830 * @param array $options Options for select
831 * @param array $join_conds Join conditions (since 1.27)
832 * @return int Row count
833 * @throws DBError
834 */
835 public function selectRowCount(
836 $tables, $var = '*', $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
837 );
838
839 /**
840 * Lock all rows meeting the given conditions/options FOR UPDATE
841 *
842 * @param array|string $table Table names
843 * @param array|string $conds Filters on the table
844 * @param string $fname Function name for profiling
845 * @param array $options Options for select ("FOR UPDATE" is added automatically)
846 * @param array $join_conds Join conditions
847 * @return int Number of matching rows found (and locked)
848 * @since 1.32
849 */
850 public function lockForUpdate(
851 $table, $conds = '', $fname = __METHOD__, $options = [], $join_conds = []
852 );
853
854 /**
855 * Determines whether a field exists in a table
856 *
857 * @param string $table Table name
858 * @param string $field Filed to check on that table
859 * @param string $fname Calling function name (optional)
860 * @return bool Whether $table has filed $field
861 * @throws DBError
862 */
863 public function fieldExists( $table, $field, $fname = __METHOD__ );
864
865 /**
866 * Determines whether an index exists
867 * Usually throws a DBQueryError on failure
868 * If errors are explicitly ignored, returns NULL on failure
869 *
870 * @param string $table
871 * @param string $index
872 * @param string $fname
873 * @return bool|null
874 * @throws DBError
875 */
876 public function indexExists( $table, $index, $fname = __METHOD__ );
877
878 /**
879 * Query whether a given table exists
880 *
881 * @param string $table
882 * @param string $fname
883 * @return bool
884 * @throws DBError
885 */
886 public function tableExists( $table, $fname = __METHOD__ );
887
888 /**
889 * INSERT wrapper, inserts an array into a table.
890 *
891 * $a may be either:
892 *
893 * - A single associative array. The array keys are the field names, and
894 * the values are the values to insert. The values are treated as data
895 * and will be quoted appropriately. If NULL is inserted, this will be
896 * converted to a database NULL.
897 * - An array with numeric keys, holding a list of associative arrays.
898 * This causes a multi-row INSERT on DBMSs that support it. The keys in
899 * each subarray must be identical to each other, and in the same order.
900 *
901 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
902 * returns success.
903 *
904 * $options is an array of options, with boolean options encoded as values
905 * with numeric keys, in the same style as $options in
906 * IDatabase::select(). Supported options are:
907 *
908 * - IGNORE: Boolean: if present, duplicate key errors are ignored, and
909 * any rows which cause duplicate key errors are not inserted. It's
910 * possible to determine how many rows were successfully inserted using
911 * IDatabase::affectedRows().
912 *
913 * @param string $table Table name. This will be passed through
914 * Database::tableName().
915 * @param array $a Array of rows to insert
916 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
917 * @param array $options Array of options
918 *
919 * @return bool
920 * @throws DBError
921 */
922 public function insert( $table, $a, $fname = __METHOD__, $options = [] );
923
924 /**
925 * UPDATE wrapper. Takes a condition array and a SET array.
926 *
927 * @param string $table Name of the table to UPDATE. This will be passed through
928 * Database::tableName().
929 * @param array $values An array of values to SET. For each array element,
930 * the key gives the field name, and the value gives the data to set
931 * that field to. The data will be quoted by IDatabase::addQuotes().
932 * Values with integer keys form unquoted SET statements, which can be used for
933 * things like "field = field + 1" or similar computed values.
934 * @param array $conds An array of conditions (WHERE). See
935 * IDatabase::select() for the details of the format of condition
936 * arrays. Use '*' to update all rows.
937 * @param string $fname The function name of the caller (from __METHOD__),
938 * for logging and profiling.
939 * @param array $options An array of UPDATE options, can be:
940 * - IGNORE: Ignore unique key conflicts
941 * - LOW_PRIORITY: MySQL-specific, see MySQL manual.
942 * @return bool
943 * @throws DBError
944 */
945 public function update( $table, $values, $conds, $fname = __METHOD__, $options = [] );
946
947 /**
948 * Makes an encoded list of strings from an array
949 *
950 * These can be used to make conjunctions or disjunctions on SQL condition strings
951 * derived from an array (see IDatabase::select() $conds documentation).
952 *
953 * Example usage:
954 * @code
955 * $sql = $db->makeList( [
956 * 'rev_page' => $id,
957 * $db->makeList( [ 'rev_minor' => 1, 'rev_len' < 500 ], $db::LIST_OR ] )
958 * ], $db::LIST_AND );
959 * @endcode
960 * This would set $sql to "rev_page = '$id' AND (rev_minor = '1' OR rev_len < '500')"
961 *
962 * @param array $a Containing the data
963 * @param int $mode IDatabase class constant:
964 * - IDatabase::LIST_COMMA: Comma separated, no field names
965 * - IDatabase::LIST_AND: ANDed WHERE clause (without the WHERE).
966 * - IDatabase::LIST_OR: ORed WHERE clause (without the WHERE)
967 * - IDatabase::LIST_SET: Comma separated with field names, like a SET clause
968 * - IDatabase::LIST_NAMES: Comma separated field names
969 * @throws DBError
970 * @return string
971 */
972 public function makeList( $a, $mode = self::LIST_COMMA );
973
974 /**
975 * Build a partial where clause from a 2-d array such as used for LinkBatch.
976 * The keys on each level may be either integers or strings.
977 *
978 * @param array $data Organized as 2-d
979 * [ baseKeyVal => [ subKeyVal => [ignored], ... ], ... ]
980 * @param string $baseKey Field name to match the base-level keys to (eg 'pl_namespace')
981 * @param string $subKey Field name to match the sub-level keys to (eg 'pl_title')
982 * @return string|bool SQL fragment, or false if no items in array
983 */
984 public function makeWhereFrom2d( $data, $baseKey, $subKey );
985
986 /**
987 * Return aggregated value alias
988 *
989 * @param array $valuedata
990 * @param string $valuename
991 *
992 * @return string
993 */
994 public function aggregateValue( $valuedata, $valuename = 'value' );
995
996 /**
997 * @param string $field
998 * @return string
999 */
1000 public function bitNot( $field );
1001
1002 /**
1003 * @param string $fieldLeft
1004 * @param string $fieldRight
1005 * @return string
1006 */
1007 public function bitAnd( $fieldLeft, $fieldRight );
1008
1009 /**
1010 * @param string $fieldLeft
1011 * @param string $fieldRight
1012 * @return string
1013 */
1014 public function bitOr( $fieldLeft, $fieldRight );
1015
1016 /**
1017 * Build a concatenation list to feed into a SQL query
1018 * @param array $stringList List of raw SQL expressions; caller is
1019 * responsible for any quoting
1020 * @return string
1021 */
1022 public function buildConcat( $stringList );
1023
1024 /**
1025 * Build a GROUP_CONCAT or equivalent statement for a query.
1026 *
1027 * This is useful for combining a field for several rows into a single string.
1028 * NULL values will not appear in the output, duplicated values will appear,
1029 * and the resulting delimiter-separated values have no defined sort order.
1030 * Code using the results may need to use the PHP unique() or sort() methods.
1031 *
1032 * @param string $delim Glue to bind the results together
1033 * @param string|array $table Table name
1034 * @param string $field Field name
1035 * @param string|array $conds Conditions
1036 * @param string|array $join_conds Join conditions
1037 * @return string SQL text
1038 * @since 1.23
1039 */
1040 public function buildGroupConcatField(
1041 $delim, $table, $field, $conds = '', $join_conds = []
1042 );
1043
1044 /**
1045 * Build a SUBSTRING function.
1046 *
1047 * Behavior for non-ASCII values is undefined.
1048 *
1049 * @param string $input Field name
1050 * @param int $startPosition Positive integer
1051 * @param int|null $length Non-negative integer length or null for no limit
1052 * @throws InvalidArgumentException
1053 * @return string SQL text
1054 * @since 1.31
1055 */
1056 public function buildSubString( $input, $startPosition, $length = null );
1057
1058 /**
1059 * @param string $field Field or column to cast
1060 * @return string
1061 * @since 1.28
1062 */
1063 public function buildStringCast( $field );
1064
1065 /**
1066 * @param string $field Field or column to cast
1067 * @return string
1068 * @since 1.31
1069 */
1070 public function buildIntegerCast( $field );
1071
1072 /**
1073 * Equivalent to IDatabase::selectSQLText() except wraps the result in Subqyery
1074 *
1075 * @see IDatabase::selectSQLText()
1076 *
1077 * @param string|array $table Table name
1078 * @param string|array $vars Field names
1079 * @param string|array $conds Conditions
1080 * @param string $fname Caller function name
1081 * @param string|array $options Query options
1082 * @param string|array $join_conds Join conditions
1083 * @return Subquery
1084 * @since 1.31
1085 */
1086 public function buildSelectSubquery(
1087 $table, $vars, $conds = '', $fname = __METHOD__,
1088 $options = [], $join_conds = []
1089 );
1090
1091 /**
1092 * Returns true if DBs are assumed to be on potentially different servers
1093 *
1094 * In systems like mysql/mariadb, different databases can easily be referenced on a single
1095 * connection merely by name, even in a single query via JOIN. On the other hand, Postgres
1096 * treats databases as fully separate, only allowing mechanisms like postgres_fdw to
1097 * effectively "mount" foreign DBs. This is true even among DBs on the same server.
1098 *
1099 * @return bool
1100 * @since 1.29
1101 */
1102 public function databasesAreIndependent();
1103
1104 /**
1105 * Change the current database
1106 *
1107 * @param string $db
1108 * @return bool Success or failure
1109 * @throws DBConnectionError If databasesAreIndependent() is true and an error occurs
1110 */
1111 public function selectDB( $db );
1112
1113 /**
1114 * Get the current DB name
1115 * @return string
1116 */
1117 public function getDBname();
1118
1119 /**
1120 * Get the server hostname or IP address
1121 * @return string
1122 */
1123 public function getServer();
1124
1125 /**
1126 * Adds quotes and backslashes.
1127 *
1128 * @param string|int|null|bool|Blob $s
1129 * @return string|int
1130 */
1131 public function addQuotes( $s );
1132
1133 /**
1134 * LIKE statement wrapper, receives a variable-length argument list with
1135 * parts of pattern to match containing either string literals that will be
1136 * escaped or tokens returned by anyChar() or anyString(). Alternatively,
1137 * the function could be provided with an array of aforementioned
1138 * parameters.
1139 *
1140 * Example: $dbr->buildLike( 'My_page_title/', $dbr->anyString() ) returns
1141 * a LIKE clause that searches for subpages of 'My page title'.
1142 * Alternatively:
1143 * $pattern = [ 'My_page_title/', $dbr->anyString() ];
1144 * $query .= $dbr->buildLike( $pattern );
1145 *
1146 * @since 1.16
1147 * @return string Fully built LIKE statement
1148 */
1149 public function buildLike();
1150
1151 /**
1152 * Returns a token for buildLike() that denotes a '_' to be used in a LIKE query
1153 *
1154 * @return LikeMatch
1155 */
1156 public function anyChar();
1157
1158 /**
1159 * Returns a token for buildLike() that denotes a '%' to be used in a LIKE query
1160 *
1161 * @return LikeMatch
1162 */
1163 public function anyString();
1164
1165 /**
1166 * Deprecated method, calls should be removed.
1167 *
1168 * This was formerly used for PostgreSQL and Oracle to handle
1169 * self::insertId() auto-incrementing fields. It is no longer necessary
1170 * since DatabasePostgres::insertId() has been reimplemented using
1171 * `lastval()` and Oracle has been reimplemented using triggers.
1172 *
1173 * Implementations should return null if inserting `NULL` into an
1174 * auto-incrementing field works, otherwise it should return an instance of
1175 * NextSequenceValue and filter it on calls to relevant methods.
1176 *
1177 * @deprecated since 1.30, no longer needed
1178 * @param string $seqName
1179 * @return null|NextSequenceValue
1180 */
1181 public function nextSequenceValue( $seqName );
1182
1183 /**
1184 * REPLACE query wrapper.
1185 *
1186 * REPLACE is a very handy MySQL extension, which functions like an INSERT
1187 * except that when there is a duplicate key error, the old row is deleted
1188 * and the new row is inserted in its place.
1189 *
1190 * We simulate this with standard SQL with a DELETE followed by INSERT. To
1191 * perform the delete, we need to know what the unique indexes are so that
1192 * we know how to find the conflicting rows.
1193 *
1194 * It may be more efficient to leave off unique indexes which are unlikely
1195 * to collide. However if you do this, you run the risk of encountering
1196 * errors which wouldn't have occurred in MySQL.
1197 *
1198 * @param string $table The table to replace the row(s) in.
1199 * @param array $uniqueIndexes Either a list of fields that define a unique index or
1200 * an array of such lists if there are multiple unique indexes defined in the schema
1201 * @param array $rows Can be either a single row to insert, or multiple rows,
1202 * in the same format as for IDatabase::insert()
1203 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1204 * @throws DBError
1205 */
1206 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__ );
1207
1208 /**
1209 * INSERT ON DUPLICATE KEY UPDATE wrapper, upserts an array into a table.
1210 *
1211 * This updates any conflicting rows (according to the unique indexes) using
1212 * the provided SET clause and inserts any remaining (non-conflicted) rows.
1213 *
1214 * $rows may be either:
1215 * - A single associative array. The array keys are the field names, and
1216 * the values are the values to insert. The values are treated as data
1217 * and will be quoted appropriately. If NULL is inserted, this will be
1218 * converted to a database NULL.
1219 * - An array with numeric keys, holding a list of associative arrays.
1220 * This causes a multi-row INSERT on DBMSs that support it. The keys in
1221 * each subarray must be identical to each other, and in the same order.
1222 *
1223 * It may be more efficient to leave off unique indexes which are unlikely
1224 * to collide. However if you do this, you run the risk of encountering
1225 * errors which wouldn't have occurred in MySQL.
1226 *
1227 * Usually throws a DBQueryError on failure. If errors are explicitly ignored,
1228 * returns success.
1229 *
1230 * @since 1.22
1231 *
1232 * @param string $table Table name. This will be passed through Database::tableName().
1233 * @param array $rows A single row or list of rows to insert
1234 * @param array $uniqueIndexes Either a list of fields that define a unique index or
1235 * an array of such lists if there are multiple unique indexes defined in the schema
1236 * @param array $set An array of values to SET. For each array element, the
1237 * key gives the field name, and the value gives the data to set that
1238 * field to. The data will be quoted by IDatabase::addQuotes().
1239 * Values with integer keys form unquoted SET statements, which can be used for
1240 * things like "field = field + 1" or similar computed values.
1241 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1242 * @throws DBError
1243 * @return bool
1244 */
1245 public function upsert(
1246 $table, array $rows, array $uniqueIndexes, array $set, $fname = __METHOD__
1247 );
1248
1249 /**
1250 * DELETE where the condition is a join.
1251 *
1252 * MySQL overrides this to use a multi-table DELETE syntax, in other databases
1253 * we use sub-selects
1254 *
1255 * For safety, an empty $conds will not delete everything. If you want to
1256 * delete all rows where the join condition matches, set $conds='*'.
1257 *
1258 * DO NOT put the join condition in $conds.
1259 *
1260 * @param string $delTable The table to delete from.
1261 * @param string $joinTable The other table.
1262 * @param string $delVar The variable to join on, in the first table.
1263 * @param string $joinVar The variable to join on, in the second table.
1264 * @param array $conds Condition array of field names mapped to variables,
1265 * ANDed together in the WHERE clause
1266 * @param string $fname Calling function name (use __METHOD__) for logs/profiling
1267 * @throws DBError
1268 */
1269 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
1270 $fname = __METHOD__
1271 );
1272
1273 /**
1274 * DELETE query wrapper.
1275 *
1276 * @param string $table Table name
1277 * @param string|array $conds Array of conditions. See $conds in IDatabase::select()
1278 * for the format. Use $conds == "*" to delete all rows
1279 * @param string $fname Name of the calling function
1280 * @throws DBUnexpectedError
1281 * @return bool|IResultWrapper
1282 * @throws DBError
1283 */
1284 public function delete( $table, $conds, $fname = __METHOD__ );
1285
1286 /**
1287 * INSERT SELECT wrapper. Takes data from a SELECT query and inserts it
1288 * into another table.
1289 *
1290 * @warning If the insert will use an auto-increment or sequence to
1291 * determine the value of a column, this may break replication on
1292 * databases using statement-based replication if the SELECT is not
1293 * deterministically ordered.
1294 *
1295 * @param string $destTable The table name to insert into
1296 * @param string|array $srcTable May be either a table name, or an array of table names
1297 * to include in a join.
1298 *
1299 * @param array $varMap Must be an associative array of the form
1300 * [ 'dest1' => 'source1', ... ]. Source items may be literals
1301 * rather than field names, but strings should be quoted with
1302 * IDatabase::addQuotes()
1303 *
1304 * @param array $conds Condition array. See $conds in IDatabase::select() for
1305 * the details of the format of condition arrays. May be "*" to copy the
1306 * whole table.
1307 *
1308 * @param string $fname The function name of the caller, from __METHOD__
1309 *
1310 * @param array $insertOptions Options for the INSERT part of the query, see
1311 * IDatabase::insert() for details. Also, one additional option is
1312 * available: pass 'NO_AUTO_COLUMNS' to hint that the query does not use
1313 * an auto-increment or sequence to determine any column values.
1314 * @param array $selectOptions Options for the SELECT part of the query, see
1315 * IDatabase::select() for details.
1316 * @param array $selectJoinConds Join conditions for the SELECT part of the query, see
1317 * IDatabase::select() for details.
1318 *
1319 * @return bool
1320 * @throws DBError
1321 */
1322 public function insertSelect( $destTable, $srcTable, $varMap, $conds,
1323 $fname = __METHOD__,
1324 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
1325 );
1326
1327 /**
1328 * Returns true if current database backend supports ORDER BY or LIMIT for separate subqueries
1329 * within the UNION construct.
1330 * @return bool
1331 */
1332 public function unionSupportsOrderAndLimit();
1333
1334 /**
1335 * Construct a UNION query
1336 * This is used for providing overload point for other DB abstractions
1337 * not compatible with the MySQL syntax.
1338 * @param array $sqls SQL statements to combine
1339 * @param bool $all Use UNION ALL
1340 * @return string SQL fragment
1341 */
1342 public function unionQueries( $sqls, $all );
1343
1344 /**
1345 * Construct a UNION query for permutations of conditions
1346 *
1347 * Databases sometimes have trouble with queries that have multiple values
1348 * for multiple condition parameters combined with limits and ordering.
1349 * This method constructs queries for the Cartesian product of the
1350 * conditions and unions them all together.
1351 *
1352 * @see IDatabase::select()
1353 * @since 1.30
1354 * @param string|array $table Table name
1355 * @param string|array $vars Field names
1356 * @param array $permute_conds Conditions for the Cartesian product. Keys
1357 * are field names, values are arrays of the possible values for that
1358 * field.
1359 * @param string|array $extra_conds Additional conditions to include in the
1360 * query.
1361 * @param string $fname Caller function name
1362 * @param string|array $options Query options. In addition to the options
1363 * recognized by IDatabase::select(), the following may be used:
1364 * - NOTALL: Set to use UNION instead of UNION ALL.
1365 * - INNER ORDER BY: If specified and supported, subqueries will use this
1366 * instead of ORDER BY.
1367 * @param string|array $join_conds Join conditions
1368 * @return string SQL query string.
1369 */
1370 public function unionConditionPermutations(
1371 $table, $vars, array $permute_conds, $extra_conds = '', $fname = __METHOD__,
1372 $options = [], $join_conds = []
1373 );
1374
1375 /**
1376 * Returns an SQL expression for a simple conditional. This doesn't need
1377 * to be overridden unless CASE isn't supported in your DBMS.
1378 *
1379 * @param string|array $cond SQL expression which will result in a boolean value
1380 * @param string $trueVal SQL expression to return if true
1381 * @param string $falseVal SQL expression to return if false
1382 * @return string SQL fragment
1383 */
1384 public function conditional( $cond, $trueVal, $falseVal );
1385
1386 /**
1387 * Returns a command for str_replace function in SQL query.
1388 * Uses REPLACE() in MySQL
1389 *
1390 * @param string $orig Column to modify
1391 * @param string $old Column to seek
1392 * @param string $new Column to replace with
1393 *
1394 * @return string
1395 */
1396 public function strreplace( $orig, $old, $new );
1397
1398 /**
1399 * Determines how long the server has been up
1400 *
1401 * @return int
1402 * @throws DBError
1403 */
1404 public function getServerUptime();
1405
1406 /**
1407 * Determines if the last failure was due to a deadlock
1408 *
1409 * Note that during a deadlock, the prior transaction will have been lost
1410 *
1411 * @return bool
1412 */
1413 public function wasDeadlock();
1414
1415 /**
1416 * Determines if the last failure was due to a lock timeout
1417 *
1418 * Note that during a lock wait timeout, the prior transaction will have been lost
1419 *
1420 * @return bool
1421 */
1422 public function wasLockTimeout();
1423
1424 /**
1425 * Determines if the last query error was due to a dropped connection
1426 *
1427 * Note that during a connection loss, the prior transaction will have been lost
1428 *
1429 * @return bool
1430 * @since 1.31
1431 */
1432 public function wasConnectionLoss();
1433
1434 /**
1435 * Determines if the last failure was due to the database being read-only.
1436 *
1437 * @return bool
1438 */
1439 public function wasReadOnlyError();
1440
1441 /**
1442 * Determines if the last query error was due to something outside of the query itself
1443 *
1444 * Note that the transaction may have been lost, discarding prior writes and results
1445 *
1446 * @return bool
1447 */
1448 public function wasErrorReissuable();
1449
1450 /**
1451 * Wait for the replica DB to catch up to a given master position
1452 *
1453 * @param DBMasterPos $pos
1454 * @param int $timeout The maximum number of seconds to wait for synchronisation
1455 * @return int|null Zero if the replica DB was past that position already,
1456 * greater than zero if we waited for some period of time, less than
1457 * zero if it timed out, and null on error
1458 * @throws DBError
1459 */
1460 public function masterPosWait( DBMasterPos $pos, $timeout );
1461
1462 /**
1463 * Get the replication position of this replica DB
1464 *
1465 * @return DBMasterPos|bool False if this is not a replica DB
1466 * @throws DBError
1467 */
1468 public function getReplicaPos();
1469
1470 /**
1471 * Get the position of this master
1472 *
1473 * @return DBMasterPos|bool False if this is not a master
1474 * @throws DBError
1475 */
1476 public function getMasterPos();
1477
1478 /**
1479 * @return bool Whether the DB is marked as read-only server-side
1480 * @since 1.28
1481 */
1482 public function serverIsReadOnly();
1483
1484 /**
1485 * Run a callback as soon as the current transaction commits or rolls back.
1486 * An error is thrown if no transaction is pending. Queries in the function will run in
1487 * AUTOCOMMIT mode unless there are begin() calls. Callbacks must commit any transactions
1488 * that they begin.
1489 *
1490 * This is useful for combining cooperative locks and DB transactions.
1491 *
1492 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1493 *
1494 * The callback takes the following arguments:
1495 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK)
1496 * - This IDatabase instance (since 1.32)
1497 *
1498 * @param callable $callback
1499 * @param string $fname Caller name
1500 * @return mixed
1501 * @since 1.28
1502 */
1503 public function onTransactionResolution( callable $callback, $fname = __METHOD__ );
1504
1505 /**
1506 * Run a callback as soon as there is no transaction pending.
1507 * If there is a transaction and it is rolled back, then the callback is cancelled.
1508 *
1509 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1510 * of the round, just after all peer transactions COMMIT. If the transaction round
1511 * is rolled back, then the callback is cancelled.
1512 *
1513 * Queries in the function will run in AUTOCOMMIT mode unless there are begin() calls.
1514 * Callbacks must commit any transactions that they begin.
1515 *
1516 * This is useful for updates to different systems or when separate transactions are needed.
1517 * For example, one might want to enqueue jobs into a system outside the database, but only
1518 * after the database is updated so that the jobs will see the data when they actually run.
1519 * It can also be used for updates that easily suffer from lock timeouts and deadlocks,
1520 * but where atomicity is not essential.
1521 *
1522 * Avoid using IDatabase instances aside from this one in the callback, unless such instances
1523 * never have IDatabase::DBO_TRX set. This keeps callbacks from interfering with one another.
1524 *
1525 * Updates will execute in the order they were enqueued.
1526 *
1527 * @note do not assume that *other* IDatabase instances will be AUTOCOMMIT mode
1528 *
1529 * The callback takes the following arguments:
1530 * - How the transaction ended (IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_IDLE)
1531 * - This IDatabase instance (since 1.32)
1532 *
1533 * @param callable $callback
1534 * @param string $fname Caller name
1535 * @since 1.32
1536 */
1537 public function onTransactionCommitOrIdle( callable $callback, $fname = __METHOD__ );
1538
1539 /**
1540 * Alias for onTransactionCommitOrIdle() for backwards-compatibility
1541 *
1542 * @param callable $callback
1543 * @param string $fname
1544 * @return mixed
1545 * @since 1.20
1546 * @deprecated Since 1.32
1547 */
1548 public function onTransactionIdle( callable $callback, $fname = __METHOD__ );
1549
1550 /**
1551 * Run a callback before the current transaction commits or now if there is none.
1552 * If there is a transaction and it is rolled back, then the callback is cancelled.
1553 *
1554 * When transaction round mode (DBO_TRX) is set, the callback will run at the end
1555 * of the round, just before all peer transactions COMMIT. If the transaction round
1556 * is rolled back, then the callback is cancelled.
1557 *
1558 * Callbacks must not start nor commit any transactions. If no transaction is active,
1559 * then a transaction will wrap the callback.
1560 *
1561 * This is useful for updates that easily suffer from lock timeouts and deadlocks,
1562 * but where atomicity is strongly desired for these updates and some related updates.
1563 *
1564 * Updates will execute in the order they were enqueued.
1565 *
1566 * The callback takes the one argument:
1567 * - This IDatabase instance (since 1.32)
1568 *
1569 * @param callable $callback
1570 * @param string $fname Caller name
1571 * @since 1.22
1572 */
1573 public function onTransactionPreCommitOrIdle( callable $callback, $fname = __METHOD__ );
1574
1575 /**
1576 * Run a callback each time any transaction commits or rolls back
1577 *
1578 * The callback takes two arguments:
1579 * - IDatabase::TRIGGER_COMMIT or IDatabase::TRIGGER_ROLLBACK
1580 * - This IDatabase object
1581 * Callbacks must commit any transactions that they begin.
1582 *
1583 * Registering a callback here will not affect writesOrCallbacks() pending.
1584 *
1585 * Since callbacks from this or onTransactionCommitOrIdle() can start and end transactions,
1586 * a single call to IDatabase::commit might trigger multiple runs of the listener callbacks.
1587 *
1588 * @param string $name Callback name
1589 * @param callable|null $callback Use null to unset a listener
1590 * @return mixed
1591 * @since 1.28
1592 */
1593 public function setTransactionListener( $name, callable $callback = null );
1594
1595 /**
1596 * Begin an atomic section of SQL statements
1597 *
1598 * Start an implicit transaction if no transaction is already active, set a savepoint
1599 * (if $cancelable is ATOMIC_CANCELABLE), and track the given section name to enforce
1600 * that the transaction is not committed prematurely. The end of the section must be
1601 * signified exactly once, either by endAtomic() or cancelAtomic(). Sections can have
1602 * have layers of inner sections (sub-sections), but all sections must be ended in order
1603 * of innermost to outermost. Transactions cannot be started or committed until all
1604 * atomic sections are closed.
1605 *
1606 * ATOMIC_CANCELABLE is useful when the caller needs to handle specific failure cases
1607 * by discarding the section's writes. This should not be used for failures when:
1608 * - upsert() could easily be used instead
1609 * - insert() with IGNORE could easily be used instead
1610 * - select() with FOR UPDATE could be checked before issuing writes instead
1611 * - The failure is from code that runs after the first write but doesn't need to
1612 * - The failures are from contention solvable via onTransactionPreCommitOrIdle()
1613 * - The failures are deadlocks; the RDBMs usually discard the whole transaction
1614 *
1615 * @note callers must use additional measures for situations involving two or more
1616 * (peer) transactions (e.g. updating two database servers at once). The transaction
1617 * and savepoint logic of this method only applies to this specific IDatabase instance.
1618 *
1619 * Example usage:
1620 * @code
1621 * // Start a transaction if there isn't one already
1622 * $dbw->startAtomic( __METHOD__ );
1623 * // Serialize these thread table updates
1624 * $dbw->select( 'thread', '1', [ 'td_id' => $tid ], __METHOD__, 'FOR UPDATE' );
1625 * // Add a new comment for the thread
1626 * $dbw->insert( 'comment', $row, __METHOD__ );
1627 * $cid = $db->insertId();
1628 * // Update thread reference to last comment
1629 * $dbw->update( 'thread', [ 'td_latest' => $cid ], [ 'td_id' => $tid ], __METHOD__ );
1630 * // Demark the end of this conceptual unit of updates
1631 * $dbw->endAtomic( __METHOD__ );
1632 * @endcode
1633 *
1634 * Example usage (atomic changes that might have to be discarded):
1635 * @code
1636 * // Start a transaction if there isn't one already
1637 * $sectionId = $dbw->startAtomic( __METHOD__, $dbw::ATOMIC_CANCELABLE );
1638 * // Create new record metadata row
1639 * $dbw->insert( 'records', $row, __METHOD__ );
1640 * // Figure out where to store the data based on the new row's ID
1641 * $path = $recordDirectory . '/' . $dbw->insertId();
1642 * // Write the record data to the storage system
1643 * $status = $fileBackend->create( [ 'dst' => $path, 'content' => $data ] );
1644 * if ( $status->isOK() ) {
1645 * // Try to cleanup files orphaned by transaction rollback
1646 * $dbw->onTransactionResolution(
1647 * function ( $type ) use ( $fileBackend, $path ) {
1648 * if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
1649 * $fileBackend->delete( [ 'src' => $path ] );
1650 * }
1651 * },
1652 * __METHOD__
1653 * );
1654 * // Demark the end of this conceptual unit of updates
1655 * $dbw->endAtomic( __METHOD__ );
1656 * } else {
1657 * // Discard these writes from the transaction (preserving prior writes)
1658 * $dbw->cancelAtomic( __METHOD__, $sectionId );
1659 * }
1660 * @endcode
1661 *
1662 * @since 1.23
1663 * @param string $fname
1664 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1665 * savepoint and enable self::cancelAtomic() for this section.
1666 * @return AtomicSectionIdentifier section ID token
1667 * @throws DBError
1668 */
1669 public function startAtomic( $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE );
1670
1671 /**
1672 * Ends an atomic section of SQL statements
1673 *
1674 * Ends the next section of atomic SQL statements and commits the transaction
1675 * if necessary.
1676 *
1677 * @since 1.23
1678 * @see IDatabase::startAtomic
1679 * @param string $fname
1680 * @throws DBError
1681 */
1682 public function endAtomic( $fname = __METHOD__ );
1683
1684 /**
1685 * Cancel an atomic section of SQL statements
1686 *
1687 * This will roll back only the statements executed since the start of the
1688 * most recent atomic section, and close that section. If a transaction was
1689 * open before the corresponding startAtomic() call, any statements before
1690 * that call are *not* rolled back and the transaction remains open. If the
1691 * corresponding startAtomic() implicitly started a transaction, that
1692 * transaction is rolled back.
1693 *
1694 * @note callers must use additional measures for situations involving two or more
1695 * (peer) transactions (e.g. updating two database servers at once). The transaction
1696 * and savepoint logic of startAtomic() are bound to specific IDatabase instances.
1697 *
1698 * Note that a call to IDatabase::rollback() will also roll back any open atomic sections.
1699 *
1700 * @note As a micro-optimization to save a few DB calls, this method may only
1701 * be called when startAtomic() was called with the ATOMIC_CANCELABLE flag.
1702 * @since 1.31
1703 * @see IDatabase::startAtomic
1704 * @param string $fname
1705 * @param AtomicSectionIdentifier|null $sectionId Section ID from startAtomic();
1706 * passing this enables cancellation of unclosed nested sections [optional]
1707 * @throws DBError
1708 */
1709 public function cancelAtomic( $fname = __METHOD__, AtomicSectionIdentifier $sectionId = null );
1710
1711 /**
1712 * Perform an atomic section of reversable SQL statements from a callback
1713 *
1714 * The $callback takes the following arguments:
1715 * - This database object
1716 * - The value of $fname
1717 *
1718 * This will execute the callback inside a pair of startAtomic()/endAtomic() calls.
1719 * If any exception occurs during execution of the callback, it will be handled as follows:
1720 * - If $cancelable is ATOMIC_CANCELABLE, cancelAtomic() will be called to back out any
1721 * (and only) statements executed during the atomic section. If that succeeds, then the
1722 * exception will be re-thrown; if it fails, then a different exception will be thrown
1723 * and any further query attempts will fail until rollback() is called.
1724 * - If $cancelable is ATOMIC_NOT_CANCELABLE, cancelAtomic() will be called to mark the
1725 * end of the section and the error will be re-thrown. Any further query attempts will
1726 * fail until rollback() is called.
1727 *
1728 * This method is convenient for letting calls to the caller of this method be wrapped
1729 * in a try/catch blocks for exception types that imply that the caller failed but was
1730 * able to properly discard the changes it made in the transaction. This method can be
1731 * an alternative to explicit calls to startAtomic()/endAtomic()/cancelAtomic().
1732 *
1733 * Example usage, "RecordStore::save" method:
1734 * @code
1735 * $dbw->doAtomicSection( __METHOD__, function ( $dbw ) use ( $record ) {
1736 * // Create new record metadata row
1737 * $dbw->insert( 'records', $record->toArray(), __METHOD__ );
1738 * // Figure out where to store the data based on the new row's ID
1739 * $path = $this->recordDirectory . '/' . $dbw->insertId();
1740 * // Write the record data to the storage system;
1741 * // blob store throughs StoreFailureException on failure
1742 * $this->blobStore->create( $path, $record->getJSON() );
1743 * // Try to cleanup files orphaned by transaction rollback
1744 * $dbw->onTransactionResolution(
1745 * function ( $type ) use ( $path ) {
1746 * if ( $type === IDatabase::TRIGGER_ROLLBACK ) {
1747 * $this->blobStore->delete( $path );
1748 * }
1749 * },
1750 * __METHOD__
1751 * );
1752 * }, $dbw::ATOMIC_CANCELABLE );
1753 * @endcode
1754 *
1755 * Example usage, caller of the "RecordStore::save" method:
1756 * @code
1757 * $dbw->startAtomic( __METHOD__ );
1758 * // ...various SQL writes happen...
1759 * try {
1760 * $recordStore->save( $record );
1761 * } catch ( StoreFailureException $e ) {
1762 * // ...various SQL writes happen...
1763 * }
1764 * // ...various SQL writes happen...
1765 * $dbw->endAtomic( __METHOD__ );
1766 * @endcode
1767 *
1768 * @see Database::startAtomic
1769 * @see Database::endAtomic
1770 * @see Database::cancelAtomic
1771 *
1772 * @param string $fname Caller name (usually __METHOD__)
1773 * @param callable $callback Callback that issues DB updates
1774 * @param string $cancelable Pass self::ATOMIC_CANCELABLE to use a
1775 * savepoint and enable self::cancelAtomic() for this section.
1776 * @return mixed $res Result of the callback (since 1.28)
1777 * @throws DBError
1778 * @throws RuntimeException
1779 * @since 1.27; prior to 1.31 this did a rollback() instead of
1780 * cancelAtomic(), and assumed no callers up the stack would ever try to
1781 * catch the exception.
1782 */
1783 public function doAtomicSection(
1784 $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
1785 );
1786
1787 /**
1788 * Begin a transaction. If a transaction is already in progress,
1789 * that transaction will be committed before the new transaction is started.
1790 *
1791 * Only call this from code with outer transcation scope.
1792 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1793 * Nesting of transactions is not supported.
1794 *
1795 * Note that when the DBO_TRX flag is set (which is usually the case for web
1796 * requests, but not for maintenance scripts), any previous database query
1797 * will have started a transaction automatically.
1798 *
1799 * Nesting of transactions is not supported. Attempts to nest transactions
1800 * will cause a warning, unless the current transaction was started
1801 * automatically because of the DBO_TRX flag.
1802 *
1803 * @param string $fname Calling function name
1804 * @param string $mode A situationally valid IDatabase::TRANSACTION_* constant [optional]
1805 * @throws DBError
1806 */
1807 public function begin( $fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT );
1808
1809 /**
1810 * Commits a transaction previously started using begin().
1811 * If no transaction is in progress, a warning is issued.
1812 *
1813 * Only call this from code with outer transcation scope.
1814 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1815 * Nesting of transactions is not supported.
1816 *
1817 * @param string $fname
1818 * @param string $flush Flush flag, set to situationally valid IDatabase::FLUSHING_*
1819 * constant to disable warnings about explicitly committing implicit transactions,
1820 * or calling commit when no transaction is in progress.
1821 *
1822 * This will trigger an exception if there is an ongoing explicit transaction.
1823 *
1824 * Only set the flush flag if you are sure that these warnings are not applicable,
1825 * and no explicit transactions are open.
1826 *
1827 * @throws DBError
1828 */
1829 public function commit( $fname = __METHOD__, $flush = '' );
1830
1831 /**
1832 * Rollback a transaction previously started using begin().
1833 * If no transaction is in progress, a warning is issued.
1834 *
1835 * Only call this from code with outer transcation scope.
1836 * See https://www.mediawiki.org/wiki/Database_transactions for details.
1837 * Nesting of transactions is not supported. If a serious unexpected error occurs,
1838 * throwing an Exception is preferrable, using a pre-installed error handler to trigger
1839 * rollback (in any case, failure to issue COMMIT will cause rollback server-side).
1840 *
1841 * Query, connection, and onTransaction* callback errors will be suppressed and logged.
1842 *
1843 * @param string $fname Calling function name
1844 * @param string $flush Flush flag, set to a situationally valid IDatabase::FLUSHING_*
1845 * constant to disable warnings about calling rollback when no transaction is in
1846 * progress. This will silently break any ongoing explicit transaction. Only set the
1847 * flush flag if you are sure that it is safe to ignore these warnings in your context.
1848 * @throws DBError
1849 * @since 1.23 Added $flush parameter
1850 */
1851 public function rollback( $fname = __METHOD__, $flush = '' );
1852
1853 /**
1854 * Commit any transaction but error out if writes or callbacks are pending
1855 *
1856 * This is intended for clearing out REPEATABLE-READ snapshots so that callers can
1857 * see a new point-in-time of the database. This is useful when one of many transaction
1858 * rounds finished and significant time will pass in the script's lifetime. It is also
1859 * useful to call on a replica DB after waiting on replication to catch up to the master.
1860 *
1861 * @param string $fname Calling function name
1862 * @throws DBError
1863 * @since 1.28
1864 */
1865 public function flushSnapshot( $fname = __METHOD__ );
1866
1867 /**
1868 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1869 * to the format used for inserting into timestamp fields in this DBMS.
1870 *
1871 * The result is unquoted, and needs to be passed through addQuotes()
1872 * before it can be included in raw SQL.
1873 *
1874 * @param string|int $ts
1875 *
1876 * @return string
1877 */
1878 public function timestamp( $ts = 0 );
1879
1880 /**
1881 * Convert a timestamp in one of the formats accepted by wfTimestamp()
1882 * to the format used for inserting into timestamp fields in this DBMS. If
1883 * NULL is input, it is passed through, allowing NULL values to be inserted
1884 * into timestamp fields.
1885 *
1886 * The result is unquoted, and needs to be passed through addQuotes()
1887 * before it can be included in raw SQL.
1888 *
1889 * @param string|int|null $ts
1890 *
1891 * @return string
1892 */
1893 public function timestampOrNull( $ts = null );
1894
1895 /**
1896 * Ping the server and try to reconnect if it there is no connection
1897 *
1898 * @param float|null &$rtt Value to store the estimated RTT [optional]
1899 * @return bool Success or failure
1900 */
1901 public function ping( &$rtt = null );
1902
1903 /**
1904 * Get the amount of replication lag for this database server
1905 *
1906 * Callers should avoid using this method while a transaction is active
1907 *
1908 * @return int|bool Database replication lag in seconds or false on error
1909 * @throws DBError
1910 */
1911 public function getLag();
1912
1913 /**
1914 * Get the replica DB lag when the current transaction started
1915 * or a general lag estimate if not transaction is active
1916 *
1917 * This is useful when transactions might use snapshot isolation
1918 * (e.g. REPEATABLE-READ in innodb), so the "real" lag of that data
1919 * is this lag plus transaction duration. If they don't, it is still
1920 * safe to be pessimistic. In AUTOCOMMIT mode, this still gives an
1921 * indication of the staleness of subsequent reads.
1922 *
1923 * @return array ('lag': seconds or false on error, 'since': UNIX timestamp of BEGIN)
1924 * @throws DBError
1925 * @since 1.27
1926 */
1927 public function getSessionLagStatus();
1928
1929 /**
1930 * Return the maximum number of items allowed in a list, or 0 for unlimited.
1931 *
1932 * @return int
1933 */
1934 public function maxListLen();
1935
1936 /**
1937 * Some DBMSs have a special format for inserting into blob fields, they
1938 * don't allow simple quoted strings to be inserted. To insert into such
1939 * a field, pass the data through this function before passing it to
1940 * IDatabase::insert().
1941 *
1942 * @param string $b
1943 * @return string|Blob
1944 */
1945 public function encodeBlob( $b );
1946
1947 /**
1948 * Some DBMSs return a special placeholder object representing blob fields
1949 * in result objects. Pass the object through this function to return the
1950 * original string.
1951 *
1952 * @param string|Blob $b
1953 * @return string
1954 */
1955 public function decodeBlob( $b );
1956
1957 /**
1958 * Override database's default behavior. $options include:
1959 * 'connTimeout' : Set the connection timeout value in seconds.
1960 * May be useful for very long batch queries such as
1961 * full-wiki dumps, where a single query reads out over
1962 * hours or days.
1963 *
1964 * @param array $options
1965 * @return void
1966 * @throws DBError
1967 */
1968 public function setSessionOptions( array $options );
1969
1970 /**
1971 * Set variables to be used in sourceFile/sourceStream, in preference to the
1972 * ones in $GLOBALS. If an array is set here, $GLOBALS will not be used at
1973 * all. If it's set to false, $GLOBALS will be used.
1974 *
1975 * @param bool|array $vars Mapping variable name to value.
1976 */
1977 public function setSchemaVars( $vars );
1978
1979 /**
1980 * Check to see if a named lock is not locked by any thread (non-blocking)
1981 *
1982 * @param string $lockName Name of lock to poll
1983 * @param string $method Name of method calling us
1984 * @return bool
1985 * @throws DBError
1986 * @since 1.20
1987 */
1988 public function lockIsFree( $lockName, $method );
1989
1990 /**
1991 * Acquire a named lock
1992 *
1993 * Named locks are not related to transactions
1994 *
1995 * @param string $lockName Name of lock to aquire
1996 * @param string $method Name of the calling method
1997 * @param int $timeout Acquisition timeout in seconds
1998 * @return bool
1999 * @throws DBError
2000 */
2001 public function lock( $lockName, $method, $timeout = 5 );
2002
2003 /**
2004 * Release a lock
2005 *
2006 * Named locks are not related to transactions
2007 *
2008 * @param string $lockName Name of lock to release
2009 * @param string $method Name of the calling method
2010 *
2011 * @return int Returns 1 if the lock was released, 0 if the lock was not established
2012 * by this thread (in which case the lock is not released), and NULL if the named lock
2013 * did not exist
2014 *
2015 * @throws DBError
2016 */
2017 public function unlock( $lockName, $method );
2018
2019 /**
2020 * Acquire a named lock, flush any transaction, and return an RAII style unlocker object
2021 *
2022 * Only call this from outer transcation scope and when only one DB will be affected.
2023 * See https://www.mediawiki.org/wiki/Database_transactions for details.
2024 *
2025 * This is suitiable for transactions that need to be serialized using cooperative locks,
2026 * where each transaction can see each others' changes. Any transaction is flushed to clear
2027 * out stale REPEATABLE-READ snapshot data. Once the returned object falls out of PHP scope,
2028 * the lock will be released unless a transaction is active. If one is active, then the lock
2029 * will be released when it either commits or rolls back.
2030 *
2031 * If the lock acquisition failed, then no transaction flush happens, and null is returned.
2032 *
2033 * @param string $lockKey Name of lock to release
2034 * @param string $fname Name of the calling method
2035 * @param int $timeout Acquisition timeout in seconds
2036 * @return ScopedCallback|null
2037 * @throws DBError
2038 * @since 1.27
2039 */
2040 public function getScopedLockAndFlush( $lockKey, $fname, $timeout );
2041
2042 /**
2043 * Check to see if a named lock used by lock() use blocking queues
2044 *
2045 * @return bool
2046 * @since 1.26
2047 */
2048 public function namedLocksEnqueue();
2049
2050 /**
2051 * Find out when 'infinity' is. Most DBMSes support this. This is a special
2052 * keyword for timestamps in PostgreSQL, and works with CHAR(14) as well
2053 * because "i" sorts after all numbers.
2054 *
2055 * @return string
2056 */
2057 public function getInfinity();
2058
2059 /**
2060 * Encode an expiry time into the DBMS dependent format
2061 *
2062 * @param string $expiry Timestamp for expiry, or the 'infinity' string
2063 * @return string
2064 */
2065 public function encodeExpiry( $expiry );
2066
2067 /**
2068 * Decode an expiry time into a DBMS independent format
2069 *
2070 * @param string $expiry DB timestamp field value for expiry
2071 * @param int $format TS_* constant, defaults to TS_MW
2072 * @return string
2073 */
2074 public function decodeExpiry( $expiry, $format = TS_MW );
2075
2076 /**
2077 * Allow or deny "big selects" for this session only. This is done by setting
2078 * the sql_big_selects session variable.
2079 *
2080 * This is a MySQL-specific feature.
2081 *
2082 * @param bool|string $value True for allow, false for deny, or "default" to
2083 * restore the initial value
2084 */
2085 public function setBigSelects( $value = true );
2086
2087 /**
2088 * @return bool Whether this DB is read-only
2089 * @since 1.27
2090 */
2091 public function isReadOnly();
2092
2093 /**
2094 * Make certain table names use their own database, schema, and table prefix
2095 * when passed into SQL queries pre-escaped and without a qualified database name
2096 *
2097 * For example, "user" can be converted to "myschema.mydbname.user" for convenience.
2098 * Appearances like `user`, somedb.user, somedb.someschema.user will used literally.
2099 *
2100 * Calling this twice will completely clear any old table aliases. Also, note that
2101 * callers are responsible for making sure the schemas and databases actually exist.
2102 *
2103 * @param array[] $aliases Map of (table => (dbname, schema, prefix) map)
2104 * @since 1.28
2105 */
2106 public function setTableAliases( array $aliases );
2107
2108 /**
2109 * Convert certain index names to alternative names before querying the DB
2110 *
2111 * Note that this applies to indexes regardless of the table they belong to.
2112 *
2113 * This can be employed when an index was renamed X => Y in code, but the new Y-named
2114 * indexes were not yet built on all DBs. After all the Y-named ones are added by the DBA,
2115 * the aliases can be removed, and then the old X-named indexes dropped.
2116 *
2117 * @param string[] $aliases
2118 * @return mixed
2119 * @since 1.31
2120 */
2121 public function setIndexAliases( array $aliases );
2122 }
2123
2124 /**
2125 * @deprecated since 1.29
2126 */
2127 class_alias( IDatabase::class, 'IDatabase' );