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