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