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