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