3 * This is the MySQL database abstraction layer.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Database abstraction object for MySQL.
26 * Defines methods independent on used MySQL extension.
32 abstract class DatabaseMysqlBase
extends Database
{
33 /** @var MysqlMasterPos */
34 protected $lastKnownReplicaPos;
35 /** @var string Method to detect replica DB lag */
36 protected $lagDetectionMethod;
37 /** @var array Method to detect replica DB lag */
38 protected $lagDetectionOptions = [];
39 /** @var bool bool Whether to use GTID methods */
40 protected $useGTIDs = false;
41 /** @var string|null */
42 protected $sslKeyPath;
43 /** @var string|null */
44 protected $sslCertPath;
45 /** @var string|null */
47 /** @var string[]|null */
48 protected $sslCiphers;
49 /** @var string sql_mode value to send on connection */
51 /** @var bool Use experimental UTF-8 transmission encoding */
54 /** @var string|null */
55 private $serverVersion = null;
58 * Additional $params include:
59 * - lagDetectionMethod : set to one of (Seconds_Behind_Master,pt-heartbeat).
60 * pt-heartbeat assumes the table is at heartbeat.heartbeat
61 * and uses UTC timestamps in the heartbeat.ts column.
62 * (https://www.percona.com/doc/percona-toolkit/2.2/pt-heartbeat.html)
63 * - lagDetectionOptions : if using pt-heartbeat, this can be set to an array map to change
64 * the default behavior. Normally, the heartbeat row with the server
65 * ID of this server's master will be used. Set the "conds" field to
66 * override the query conditions, e.g. ['shard' => 's1'].
67 * - useGTIDs : use GTID methods like MASTER_GTID_WAIT() when possible.
68 * - sslKeyPath : path to key file [default: null]
69 * - sslCertPath : path to certificate file [default: null]
70 * - sslCAPath : parth to certificate authority PEM files [default: null]
71 * - sslCiphers : array list of allowable ciphers [default: null]
72 * @param array $params
74 function __construct( array $params ) {
75 $this->lagDetectionMethod
= isset( $params['lagDetectionMethod'] )
76 ?
$params['lagDetectionMethod']
77 : 'Seconds_Behind_Master';
78 $this->lagDetectionOptions
= isset( $params['lagDetectionOptions'] )
79 ?
$params['lagDetectionOptions']
81 $this->useGTIDs
= !empty( $params['useGTIDs' ] );
82 foreach ( [ 'KeyPath', 'CertPath', 'CAPath', 'Ciphers' ] as $name ) {
84 if ( isset( $params[$var] ) ) {
85 $this->$var = $params[$var];
88 $this->sqlMode
= isset( $params['sqlMode'] ) ?
$params['sqlMode'] : '';
89 $this->utf8Mode
= !empty( $params['utf8Mode'] );
91 parent
::__construct( $params );
97 public function getType() {
102 * @param string $server
103 * @param string $user
104 * @param string $password
105 * @param string $dbName
106 * @throws Exception|DBConnectionError
109 public function open( $server, $user, $password, $dbName ) {
110 # Close/unset connection handle
113 $this->mServer
= $server;
114 $this->mUser
= $user;
115 $this->mPassword
= $password;
116 $this->mDBname
= $dbName;
118 $this->installErrorHandler();
120 $this->mConn
= $this->mysqlConnect( $this->mServer
);
121 } catch ( Exception
$ex ) {
122 $this->restoreErrorHandler();
125 $error = $this->restoreErrorHandler();
127 # Always log connection errors
128 if ( !$this->mConn
) {
130 $error = $this->lastError();
132 $this->connLogger
->error(
133 "Error connecting to {db_server}: {error}",
134 $this->getLogContext( [
135 'method' => __METHOD__
,
139 $this->connLogger
->debug( "DB connection error\n" .
140 "Server: $server, User: $user, Password: " .
141 substr( $password, 0, 3 ) . "..., error: " . $error . "\n" );
143 $this->reportConnectionError( $error );
146 if ( $dbName != '' ) {
147 MediaWiki\
suppressWarnings();
148 $success = $this->selectDB( $dbName );
149 MediaWiki\restoreWarnings
();
151 $this->queryLogger
->error(
152 "Error selecting database {db_name} on server {db_server}",
153 $this->getLogContext( [
154 'method' => __METHOD__
,
157 $this->queryLogger
->debug(
158 "Error selecting database $dbName on server {$this->mServer}" );
160 $this->reportConnectionError( "Error selecting database $dbName" );
164 // Tell the server what we're communicating with
165 if ( !$this->connectInitCharset() ) {
166 $this->reportConnectionError( "Error setting character set" );
169 // Abstract over any insane MySQL defaults
170 $set = [ 'group_concat_max_len = 262144' ];
171 // Set SQL mode, default is turning them all off, can be overridden or skipped with null
172 if ( is_string( $this->sqlMode
) ) {
173 $set[] = 'sql_mode = ' . $this->addQuotes( $this->sqlMode
);
175 // Set any custom settings defined by site config
176 // (e.g. https://dev.mysql.com/doc/refman/4.1/en/innodb-parameters.html)
177 foreach ( $this->mSessionVars
as $var => $val ) {
178 // Escape strings but not numbers to avoid MySQL complaining
179 if ( !is_int( $val ) && !is_float( $val ) ) {
180 $val = $this->addQuotes( $val );
182 $set[] = $this->addIdentifierQuotes( $var ) . ' = ' . $val;
186 // Use doQuery() to avoid opening implicit transactions (DBO_TRX)
187 $success = $this->doQuery( 'SET ' . implode( ', ', $set ) );
189 $this->queryLogger
->error(
190 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)',
191 $this->getLogContext( [
192 'method' => __METHOD__
,
195 $this->reportConnectionError(
196 'Error setting MySQL variables on server {db_server} (check $wgSQLMode)' );
200 $this->mOpened
= true;
206 * Set the character set information right after connection
209 protected function connectInitCharset() {
210 if ( $this->utf8Mode
) {
211 // Tell the server we're communicating with it in UTF-8.
212 // This may engage various charset conversions.
213 return $this->mysqlSetCharset( 'utf8' );
215 return $this->mysqlSetCharset( 'binary' );
220 * Open a connection to a MySQL server
222 * @param string $realServer
223 * @return mixed Raw connection
224 * @throws DBConnectionError
226 abstract protected function mysqlConnect( $realServer );
229 * Set the character set of the MySQL link
231 * @param string $charset
234 abstract protected function mysqlSetCharset( $charset );
237 * @param ResultWrapper|resource $res
238 * @throws DBUnexpectedError
240 public function freeResult( $res ) {
241 if ( $res instanceof ResultWrapper
) {
244 MediaWiki\
suppressWarnings();
245 $ok = $this->mysqlFreeResult( $res );
246 MediaWiki\restoreWarnings
();
248 throw new DBUnexpectedError( $this, "Unable to free MySQL result" );
255 * @param resource $res Raw result
258 abstract protected function mysqlFreeResult( $res );
261 * @param ResultWrapper|resource $res
262 * @return stdClass|bool
263 * @throws DBUnexpectedError
265 public function fetchObject( $res ) {
266 if ( $res instanceof ResultWrapper
) {
269 MediaWiki\
suppressWarnings();
270 $row = $this->mysqlFetchObject( $res );
271 MediaWiki\restoreWarnings
();
273 $errno = $this->lastErrno();
274 // Unfortunately, mysql_fetch_object does not reset the last errno.
275 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
276 // these are the only errors mysql_fetch_object can cause.
277 // See https://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
278 if ( $errno == 2000 ||
$errno == 2013 ) {
279 throw new DBUnexpectedError(
281 'Error in fetchObject(): ' . htmlspecialchars( $this->lastError() )
289 * Fetch a result row as an object
291 * @param resource $res Raw result
294 abstract protected function mysqlFetchObject( $res );
297 * @param ResultWrapper|resource $res
299 * @throws DBUnexpectedError
301 public function fetchRow( $res ) {
302 if ( $res instanceof ResultWrapper
) {
305 MediaWiki\
suppressWarnings();
306 $row = $this->mysqlFetchArray( $res );
307 MediaWiki\restoreWarnings
();
309 $errno = $this->lastErrno();
310 // Unfortunately, mysql_fetch_array does not reset the last errno.
311 // Only check for CR_SERVER_LOST and CR_UNKNOWN_ERROR, as
312 // these are the only errors mysql_fetch_array can cause.
313 // See https://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
314 if ( $errno == 2000 ||
$errno == 2013 ) {
315 throw new DBUnexpectedError(
317 'Error in fetchRow(): ' . htmlspecialchars( $this->lastError() )
325 * Fetch a result row as an associative and numeric array
327 * @param resource $res Raw result
330 abstract protected function mysqlFetchArray( $res );
333 * @throws DBUnexpectedError
334 * @param ResultWrapper|resource $res
337 function numRows( $res ) {
338 if ( $res instanceof ResultWrapper
) {
341 MediaWiki\
suppressWarnings();
342 $n = $this->mysqlNumRows( $res );
343 MediaWiki\restoreWarnings
();
345 // Unfortunately, mysql_num_rows does not reset the last errno.
346 // We are not checking for any errors here, since
347 // these are no errors mysql_num_rows can cause.
348 // See https://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html.
349 // See https://phabricator.wikimedia.org/T44430
354 * Get number of rows in result
356 * @param resource $res Raw result
359 abstract protected function mysqlNumRows( $res );
362 * @param ResultWrapper|resource $res
365 public function numFields( $res ) {
366 if ( $res instanceof ResultWrapper
) {
370 return $this->mysqlNumFields( $res );
374 * Get number of fields in result
376 * @param resource $res Raw result
379 abstract protected function mysqlNumFields( $res );
382 * @param ResultWrapper|resource $res
386 public function fieldName( $res, $n ) {
387 if ( $res instanceof ResultWrapper
) {
391 return $this->mysqlFieldName( $res, $n );
395 * Get the name of the specified field in a result
397 * @param ResultWrapper|resource $res
401 abstract protected function mysqlFieldName( $res, $n );
404 * mysql_field_type() wrapper
405 * @param ResultWrapper|resource $res
409 public function fieldType( $res, $n ) {
410 if ( $res instanceof ResultWrapper
) {
414 return $this->mysqlFieldType( $res, $n );
418 * Get the type of the specified field in a result
420 * @param ResultWrapper|resource $res
424 abstract protected function mysqlFieldType( $res, $n );
427 * @param ResultWrapper|resource $res
431 public function dataSeek( $res, $row ) {
432 if ( $res instanceof ResultWrapper
) {
436 return $this->mysqlDataSeek( $res, $row );
440 * Move internal result pointer
442 * @param ResultWrapper|resource $res
446 abstract protected function mysqlDataSeek( $res, $row );
451 public function lastError() {
452 if ( $this->mConn
) {
453 # Even if it's non-zero, it can still be invalid
454 MediaWiki\
suppressWarnings();
455 $error = $this->mysqlError( $this->mConn
);
457 $error = $this->mysqlError();
459 MediaWiki\restoreWarnings
();
461 $error = $this->mysqlError();
464 $error .= ' (' . $this->mServer
. ')';
471 * Returns the text of the error message from previous MySQL operation
473 * @param resource $conn Raw connection
476 abstract protected function mysqlError( $conn = null );
479 * @param string $table
480 * @param array $uniqueIndexes
482 * @param string $fname
483 * @return ResultWrapper
485 public function replace( $table, $uniqueIndexes, $rows, $fname = __METHOD__
) {
486 return $this->nativeReplace( $table, $rows, $fname );
490 * Estimate rows in dataset
491 * Returns estimated count, based on EXPLAIN output
492 * Takes same arguments as Database::select()
494 * @param string|array $table
495 * @param string|array $vars
496 * @param string|array $conds
497 * @param string $fname
498 * @param string|array $options
501 public function estimateRowCount( $table, $vars = '*', $conds = '',
502 $fname = __METHOD__
, $options = []
504 $options['EXPLAIN'] = true;
505 $res = $this->select( $table, $vars, $conds, $fname, $options );
506 if ( $res === false ) {
509 if ( !$this->numRows( $res ) ) {
514 foreach ( $res as $plan ) {
515 $rows *= $plan->rows
> 0 ?
$plan->rows
: 1; // avoid resetting to zero
521 public function tableExists( $table, $fname = __METHOD__
) {
522 $table = $this->tableName( $table, 'raw' );
523 if ( isset( $this->mSessionTempTables
[$table] ) ) {
524 return true; // already known to exist and won't show in SHOW TABLES anyway
527 $encLike = $this->buildLike( $table );
529 return $this->query( "SHOW TABLES $encLike", $fname )->numRows() > 0;
533 * @param string $table
534 * @param string $field
535 * @return bool|MySQLField
537 public function fieldInfo( $table, $field ) {
538 $table = $this->tableName( $table );
539 $res = $this->query( "SELECT * FROM $table LIMIT 1", __METHOD__
, true );
543 $n = $this->mysqlNumFields( $res->result
);
544 for ( $i = 0; $i < $n; $i++
) {
545 $meta = $this->mysqlFetchField( $res->result
, $i );
546 if ( $field == $meta->name
) {
547 return new MySQLField( $meta );
555 * Get column information from a result
557 * @param resource $res Raw result
561 abstract protected function mysqlFetchField( $res, $n );
564 * Get information about an index into an object
565 * Returns false if the index does not exist
567 * @param string $table
568 * @param string $index
569 * @param string $fname
570 * @return bool|array|null False or null on failure
572 public function indexInfo( $table, $index, $fname = __METHOD__
) {
573 # SHOW INDEX works in MySQL 3.23.58, but SHOW INDEXES does not.
574 # SHOW INDEX should work for 3.x and up:
575 # https://dev.mysql.com/doc/mysql/en/SHOW_INDEX.html
576 $table = $this->tableName( $table );
577 $index = $this->indexName( $index );
579 $sql = 'SHOW INDEX FROM ' . $table;
580 $res = $this->query( $sql, $fname );
588 foreach ( $res as $row ) {
589 if ( $row->Key_name
== $index ) {
594 return empty( $result ) ?
false : $result;
601 public function strencode( $s ) {
602 return $this->mysqlRealEscapeString( $s );
609 abstract protected function mysqlRealEscapeString( $s );
611 public function addQuotes( $s ) {
612 if ( is_bool( $s ) ) {
613 // Parent would transform to int, which does not play nice with MySQL type juggling.
614 // When searching for an int in a string column, the strings are cast to int, which
615 // means false would match any string not starting with a number.
616 $s = (string)(int)$s;
618 return parent
::addQuotes( $s );
622 * MySQL uses `backticks` for identifier quoting instead of the sql standard "double quotes".
627 public function addIdentifierQuotes( $s ) {
628 // Characters in the range \u0001-\uFFFF are valid in a quoted identifier
629 // Remove NUL bytes and escape backticks by doubling
630 return '`' . str_replace( [ "\0", '`' ], [ '', '``' ], $s ) . '`';
634 * @param string $name
637 public function isQuotedIdentifier( $name ) {
638 return strlen( $name ) && $name[0] == '`' && substr( $name, -1, 1 ) == '`';
641 public function getLag() {
642 if ( $this->getLagDetectionMethod() === 'pt-heartbeat' ) {
643 return $this->getLagFromPtHeartbeat();
645 return $this->getLagFromSlaveStatus();
652 protected function getLagDetectionMethod() {
653 return $this->lagDetectionMethod
;
659 protected function getLagFromSlaveStatus() {
660 $res = $this->query( 'SHOW SLAVE STATUS', __METHOD__
);
661 $row = $res ?
$res->fetchObject() : false;
662 if ( $row && strval( $row->Seconds_Behind_Master
) !== '' ) {
663 return intval( $row->Seconds_Behind_Master
);
672 protected function getLagFromPtHeartbeat() {
673 $options = $this->lagDetectionOptions
;
675 if ( isset( $options['conds'] ) ) {
676 // Best method for multi-DC setups: use logical channel names
677 $data = $this->getHeartbeatData( $options['conds'] );
679 // Standard method: use master server ID (works with stock pt-heartbeat)
680 $masterInfo = $this->getMasterServerInfo();
681 if ( !$masterInfo ) {
682 $this->queryLogger
->error(
683 "Unable to query master of {db_server} for server ID",
684 $this->getLogContext( [
685 'method' => __METHOD__
689 return false; // could not get master server ID
692 $conds = [ 'server_id' => intval( $masterInfo['serverId'] ) ];
693 $data = $this->getHeartbeatData( $conds );
696 list( $time, $nowUnix ) = $data;
697 if ( $time !== null ) {
698 // @time is in ISO format like "2015-09-25T16:48:10.000510"
699 $dateTime = new DateTime( $time, new DateTimeZone( 'UTC' ) );
700 $timeUnix = (int)$dateTime->format( 'U' ) +
$dateTime->format( 'u' ) / 1e6
;
702 return max( $nowUnix - $timeUnix, 0.0 );
705 $this->queryLogger
->error(
706 "Unable to find pt-heartbeat row for {db_server}",
707 $this->getLogContext( [
708 'method' => __METHOD__
715 protected function getMasterServerInfo() {
716 $cache = $this->srvCache
;
717 $key = $cache->makeGlobalKey(
720 // Using one key for all cluster replica DBs is preferable
721 $this->getLBInfo( 'clusterMasterHost' ) ?
: $this->getServer()
724 return $cache->getWithSetCallback(
726 $cache::TTL_INDEFINITE
,
727 function () use ( $cache, $key ) {
728 // Get and leave a lock key in place for a short period
729 if ( !$cache->lock( $key, 0, 10 ) ) {
730 return false; // avoid master connection spike slams
733 $conn = $this->getLazyMasterHandle();
735 return false; // something is misconfigured
738 // Connect to and query the master; catch errors to avoid outages
740 $res = $conn->query( 'SELECT @@server_id AS id', __METHOD__
);
741 $row = $res ?
$res->fetchObject() : false;
742 $id = $row ?
(int)$row->id
: 0;
743 } catch ( DBError
$e ) {
747 // Cache the ID if it was retrieved
748 return $id ?
[ 'serverId' => $id, 'asOf' => time() ] : false;
754 * @param array $conds WHERE clause conditions to find a row
755 * @return array (heartbeat `ts` column value or null, UNIX timestamp) for the newest beat
756 * @see https://www.percona.com/doc/percona-toolkit/2.1/pt-heartbeat.html
758 protected function getHeartbeatData( array $conds ) {
759 // Do not bother starting implicit transactions here
760 $this->clearFlag( self
::DBO_TRX
, self
::REMEMBER_PRIOR
);
762 $whereSQL = $this->makeList( $conds, self
::LIST_AND
);
763 // Use ORDER BY for channel based queries since that field might not be UNIQUE.
764 // Note: this would use "TIMESTAMPDIFF(MICROSECOND,ts,UTC_TIMESTAMP(6))" but the
765 // percision field is not supported in MySQL <= 5.5.
767 "SELECT ts FROM heartbeat.heartbeat WHERE $whereSQL ORDER BY ts DESC LIMIT 1"
769 $row = $res ?
$res->fetchObject() : false;
771 $this->restoreFlags();
774 return [ $row ?
$row->ts
: null, microtime( true ) ];
777 protected function getApproximateLagStatus() {
778 if ( $this->getLagDetectionMethod() === 'pt-heartbeat' ) {
779 // Disable caching since this is fast enough and we don't wan't
780 // to be *too* pessimistic by having both the cache TTL and the
781 // pt-heartbeat interval count as lag in getSessionLagStatus()
782 return parent
::getApproximateLagStatus();
785 $key = $this->srvCache
->makeGlobalKey( 'mysql-lag', $this->getServer() );
786 $approxLag = $this->srvCache
->get( $key );
788 $approxLag = parent
::getApproximateLagStatus();
789 $this->srvCache
->set( $key, $approxLag, 1 );
795 public function masterPosWait( DBMasterPos
$pos, $timeout ) {
796 if ( !( $pos instanceof MySQLMasterPos
) ) {
797 throw new InvalidArgumentException( "Position not an instance of MySQLMasterPos" );
800 if ( $this->getLBInfo( 'is static' ) === true ) {
801 return 0; // this is a copy of a read-only dataset with no master DB
802 } elseif ( $this->lastKnownReplicaPos
&& $this->lastKnownReplicaPos
->hasReached( $pos ) ) {
803 return 0; // already reached this point for sure
806 // Call doQuery() directly, to avoid opening a transaction if DBO_TRX is set
807 if ( $this->useGTIDs
&& $pos->gtids
) {
808 // Wait on the GTID set (MariaDB only)
809 $gtidArg = $this->addQuotes( implode( ',', $pos->gtids
) );
810 $res = $this->doQuery( "SELECT MASTER_GTID_WAIT($gtidArg, $timeout)" );
812 // Wait on the binlog coordinates
813 $encFile = $this->addQuotes( $pos->file
);
814 $encPos = intval( $pos->pos
);
815 $res = $this->doQuery( "SELECT MASTER_POS_WAIT($encFile, $encPos, $timeout)" );
818 $row = $res ?
$this->fetchRow( $res ) : false;
820 throw new DBExpectedError( $this, "Failed to query MASTER_POS_WAIT()" );
823 // Result can be NULL (error), -1 (timeout), or 0+ per the MySQL manual
824 $status = ( $row[0] !== null ) ?
intval( $row[0] ) : null;
825 if ( $status === null ) {
826 // T126436: jobs programmed to wait on master positions might be referencing binlogs
827 // with an old master hostname. Such calls make MASTER_POS_WAIT() return null. Try
828 // to detect this and treat the replica DB as having reached the position; a proper master
829 // switchover already requires that the new master be caught up before the switch.
830 $replicationPos = $this->getReplicaPos();
831 if ( $replicationPos && !$replicationPos->channelsMatch( $pos ) ) {
832 $this->lastKnownReplicaPos
= $replicationPos;
835 } elseif ( $status >= 0 ) {
836 // Remember that this position was reached to save queries next time
837 $this->lastKnownReplicaPos
= $pos;
844 * Get the position of the master from SHOW SLAVE STATUS
846 * @return MySQLMasterPos|bool
848 public function getReplicaPos() {
849 $res = $this->query( 'SHOW SLAVE STATUS', __METHOD__
);
850 $row = $this->fetchObject( $res );
853 $pos = isset( $row->Exec_master_log_pos
)
854 ?
$row->Exec_master_log_pos
855 : $row->Exec_Master_Log_Pos
;
856 // Also fetch the last-applied GTID set (MariaDB)
857 if ( $this->useGTIDs
) {
858 $res = $this->query( "SHOW GLOBAL VARIABLES LIKE 'gtid_slave_pos'", __METHOD__
);
859 $gtidRow = $this->fetchObject( $res );
860 $gtidSet = $gtidRow ?
$gtidRow->Value
: '';
865 return new MySQLMasterPos( $row->Relay_Master_Log_File
, $pos, $gtidSet );
872 * Get the position of the master from SHOW MASTER STATUS
874 * @return MySQLMasterPos|bool
876 public function getMasterPos() {
877 $res = $this->query( 'SHOW MASTER STATUS', __METHOD__
);
878 $row = $this->fetchObject( $res );
881 // Also fetch the last-written GTID set (MariaDB)
882 if ( $this->useGTIDs
) {
883 $res = $this->query( "SHOW GLOBAL VARIABLES LIKE 'gtid_binlog_pos'", __METHOD__
);
884 $gtidRow = $this->fetchObject( $res );
885 $gtidSet = $gtidRow ?
$gtidRow->Value
: '';
890 return new MySQLMasterPos( $row->File
, $row->Position
, $gtidSet );
896 public function serverIsReadOnly() {
897 $res = $this->query( "SHOW GLOBAL VARIABLES LIKE 'read_only'", __METHOD__
);
898 $row = $this->fetchObject( $res );
900 return $row ?
( strtolower( $row->Value
) === 'on' ) : false;
904 * @param string $index
907 function useIndexClause( $index ) {
908 return "FORCE INDEX (" . $this->indexName( $index ) . ")";
912 * @param string $index
915 function ignoreIndexClause( $index ) {
916 return "IGNORE INDEX (" . $this->indexName( $index ) . ")";
922 function lowPriorityOption() {
923 return 'LOW_PRIORITY';
929 public function getSoftwareLink() {
930 // MariaDB includes its name in its version string; this is how MariaDB's version of
931 // the mysql command-line client identifies MariaDB servers (see mariadb_connection()
932 // in libmysql/libmysql.c).
933 $version = $this->getServerVersion();
934 if ( strpos( $version, 'MariaDB' ) !== false ||
strpos( $version, '-maria-' ) !== false ) {
935 return '[{{int:version-db-mariadb-url}} MariaDB]';
938 // Percona Server's version suffix is not very distinctive, and @@version_comment
939 // doesn't give the necessary info for source builds, so assume the server is MySQL.
940 // (Even Percona's version of mysql doesn't try to make the distinction.)
941 return '[{{int:version-db-mysql-url}} MySQL]';
947 public function getServerVersion() {
948 // Not using mysql_get_server_info() or similar for consistency: in the handshake,
949 // MariaDB 10 adds the prefix "5.5.5-", and only some newer client libraries strip
950 // it off (see RPL_VERSION_HACK in include/mysql_com.h).
951 if ( $this->serverVersion
=== null ) {
952 $this->serverVersion
= $this->selectField( '', 'VERSION()', '', __METHOD__
);
954 return $this->serverVersion
;
958 * @param array $options
960 public function setSessionOptions( array $options ) {
961 if ( isset( $options['connTimeout'] ) ) {
962 $timeout = (int)$options['connTimeout'];
963 $this->query( "SET net_read_timeout=$timeout" );
964 $this->query( "SET net_write_timeout=$timeout" );
970 * @param string $newLine
973 public function streamStatementEnd( &$sql, &$newLine ) {
974 if ( strtoupper( substr( $newLine, 0, 9 ) ) == 'DELIMITER' ) {
975 preg_match( '/^DELIMITER\s+(\S+)/', $newLine, $m );
976 $this->delimiter
= $m[1];
980 return parent
::streamStatementEnd( $sql, $newLine );
984 * Check to see if a named lock is available. This is non-blocking.
986 * @param string $lockName Name of lock to poll
987 * @param string $method Name of method calling us
991 public function lockIsFree( $lockName, $method ) {
992 $encName = $this->addQuotes( $this->makeLockName( $lockName ) );
993 $result = $this->query( "SELECT IS_FREE_LOCK($encName) AS lockstatus", $method );
994 $row = $this->fetchObject( $result );
996 return ( $row->lockstatus
== 1 );
1000 * @param string $lockName
1001 * @param string $method
1002 * @param int $timeout
1005 public function lock( $lockName, $method, $timeout = 5 ) {
1006 $encName = $this->addQuotes( $this->makeLockName( $lockName ) );
1007 $result = $this->query( "SELECT GET_LOCK($encName, $timeout) AS lockstatus", $method );
1008 $row = $this->fetchObject( $result );
1010 if ( $row->lockstatus
== 1 ) {
1011 parent
::lock( $lockName, $method, $timeout ); // record
1015 $this->queryLogger
->warning( __METHOD__
. " failed to acquire lock '$lockName'\n" );
1022 * https://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html#function_release-lock
1023 * @param string $lockName
1024 * @param string $method
1027 public function unlock( $lockName, $method ) {
1028 $encName = $this->addQuotes( $this->makeLockName( $lockName ) );
1029 $result = $this->query( "SELECT RELEASE_LOCK($encName) as lockstatus", $method );
1030 $row = $this->fetchObject( $result );
1032 if ( $row->lockstatus
== 1 ) {
1033 parent
::unlock( $lockName, $method ); // record
1037 $this->queryLogger
->warning( __METHOD__
. " failed to release lock '$lockName'\n" );
1042 private function makeLockName( $lockName ) {
1043 // https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_get-lock
1044 // Newer version enforce a 64 char length limit.
1045 return ( strlen( $lockName ) > 64 ) ?
sha1( $lockName ) : $lockName;
1048 public function namedLocksEnqueue() {
1053 * @param array $read
1054 * @param array $write
1055 * @param string $method
1056 * @param bool $lowPriority
1059 public function lockTables( $read, $write, $method, $lowPriority = true ) {
1062 foreach ( $write as $table ) {
1063 $tbl = $this->tableName( $table ) .
1064 ( $lowPriority ?
' LOW_PRIORITY' : '' ) .
1068 foreach ( $read as $table ) {
1069 $items[] = $this->tableName( $table ) . ' READ';
1071 $sql = "LOCK TABLES " . implode( ',', $items );
1072 $this->query( $sql, $method );
1078 * @param string $method
1081 public function unlockTables( $method ) {
1082 $this->query( "UNLOCK TABLES", $method );
1088 * @param bool $value
1090 public function setBigSelects( $value = true ) {
1091 if ( $value === 'default' ) {
1092 if ( $this->mDefaultBigSelects
=== null ) {
1093 # Function hasn't been called before so it must already be set to the default
1096 $value = $this->mDefaultBigSelects
;
1098 } elseif ( $this->mDefaultBigSelects
=== null ) {
1099 $this->mDefaultBigSelects
=
1100 (bool)$this->selectField( false, '@@sql_big_selects', '', __METHOD__
);
1102 $encValue = $value ?
'1' : '0';
1103 $this->query( "SET sql_big_selects=$encValue", __METHOD__
);
1107 * DELETE where the condition is a join. MySql uses multi-table deletes.
1108 * @param string $delTable
1109 * @param string $joinTable
1110 * @param string $delVar
1111 * @param string $joinVar
1112 * @param array|string $conds
1113 * @param bool|string $fname
1114 * @throws DBUnexpectedError
1115 * @return bool|ResultWrapper
1117 public function deleteJoin(
1118 $delTable, $joinTable, $delVar, $joinVar, $conds, $fname = __METHOD__
1121 throw new DBUnexpectedError( $this, __METHOD__
. ' called with empty $conds' );
1124 $delTable = $this->tableName( $delTable );
1125 $joinTable = $this->tableName( $joinTable );
1126 $sql = "DELETE $delTable FROM $delTable, $joinTable WHERE $delVar=$joinVar ";
1128 if ( $conds != '*' ) {
1129 $sql .= ' AND ' . $this->makeList( $conds, self
::LIST_AND
);
1132 return $this->query( $sql, $fname );
1136 * @param string $table
1137 * @param array $rows
1138 * @param array $uniqueIndexes
1140 * @param string $fname
1143 public function upsert( $table, array $rows, array $uniqueIndexes,
1144 array $set, $fname = __METHOD__
1146 if ( !count( $rows ) ) {
1147 return true; // nothing to do
1150 if ( !is_array( reset( $rows ) ) ) {
1154 $table = $this->tableName( $table );
1155 $columns = array_keys( $rows[0] );
1157 $sql = "INSERT INTO $table (" . implode( ',', $columns ) . ') VALUES ';
1159 foreach ( $rows as $row ) {
1160 $rowTuples[] = '(' . $this->makeList( $row ) . ')';
1162 $sql .= implode( ',', $rowTuples );
1163 $sql .= " ON DUPLICATE KEY UPDATE " . $this->makeList( $set, self
::LIST_SET
);
1165 return (bool)$this->query( $sql, $fname );
1169 * Determines how long the server has been up
1173 public function getServerUptime() {
1174 $vars = $this->getMysqlStatus( 'Uptime' );
1176 return (int)$vars['Uptime'];
1180 * Determines if the last failure was due to a deadlock
1184 public function wasDeadlock() {
1185 return $this->lastErrno() == 1213;
1189 * Determines if the last failure was due to a lock timeout
1193 public function wasLockTimeout() {
1194 return $this->lastErrno() == 1205;
1197 public function wasErrorReissuable() {
1198 return $this->lastErrno() == 2013 ||
$this->lastErrno() == 2006;
1202 * Determines if the last failure was due to the database being read-only.
1206 public function wasReadOnlyError() {
1207 return $this->lastErrno() == 1223 ||
1208 ( $this->lastErrno() == 1290 && strpos( $this->lastError(), '--read-only' ) !== false );
1211 public function wasConnectionError( $errno ) {
1212 return $errno == 2013 ||
$errno == 2006;
1216 * @param string $oldName
1217 * @param string $newName
1218 * @param bool $temporary
1219 * @param string $fname
1222 public function duplicateTableStructure(
1223 $oldName, $newName, $temporary = false, $fname = __METHOD__
1225 $tmp = $temporary ?
'TEMPORARY ' : '';
1226 $newName = $this->addIdentifierQuotes( $newName );
1227 $oldName = $this->addIdentifierQuotes( $oldName );
1228 $query = "CREATE $tmp TABLE $newName (LIKE $oldName)";
1230 return $this->query( $query, $fname );
1234 * List all tables on the database
1236 * @param string $prefix Only show tables with this prefix, e.g. mw_
1237 * @param string $fname Calling function name
1240 public function listTables( $prefix = null, $fname = __METHOD__
) {
1241 $result = $this->query( "SHOW TABLES", $fname );
1245 foreach ( $result as $table ) {
1246 $vars = get_object_vars( $table );
1247 $table = array_pop( $vars );
1249 if ( !$prefix ||
strpos( $table, $prefix ) === 0 ) {
1250 $endArray[] = $table;
1258 * @param string $tableName
1259 * @param string $fName
1260 * @return bool|ResultWrapper
1262 public function dropTable( $tableName, $fName = __METHOD__
) {
1263 if ( !$this->tableExists( $tableName, $fName ) ) {
1267 return $this->query( "DROP TABLE IF EXISTS " . $this->tableName( $tableName ), $fName );
1271 * Get status information from SHOW STATUS in an associative array
1273 * @param string $which
1276 private function getMysqlStatus( $which = "%" ) {
1277 $res = $this->query( "SHOW STATUS LIKE '{$which}'" );
1280 foreach ( $res as $row ) {
1281 $status[$row->Variable_name
] = $row->Value
;
1288 * Lists VIEWs in the database
1290 * @param string $prefix Only show VIEWs with this prefix, eg.
1291 * unit_test_, or $wgDBprefix. Default: null, would return all views.
1292 * @param string $fname Name of calling function
1296 public function listViews( $prefix = null, $fname = __METHOD__
) {
1297 // The name of the column containing the name of the VIEW
1298 $propertyName = 'Tables_in_' . $this->mDBname
;
1300 // Query for the VIEWS
1301 $res = $this->query( 'SHOW FULL TABLES WHERE TABLE_TYPE = "VIEW"' );
1303 foreach ( $res as $row ) {
1304 array_push( $allViews, $row->$propertyName );
1307 if ( is_null( $prefix ) ||
$prefix === '' ) {
1311 $filteredViews = [];
1312 foreach ( $allViews as $viewName ) {
1313 // Does the name of this VIEW start with the table-prefix?
1314 if ( strpos( $viewName, $prefix ) === 0 ) {
1315 array_push( $filteredViews, $viewName );
1319 return $filteredViews;
1323 * Differentiates between a TABLE and a VIEW.
1325 * @param string $name Name of the TABLE/VIEW to test
1326 * @param string $prefix
1330 public function isView( $name, $prefix = null ) {
1331 return in_array( $name, $this->listViews( $prefix ) );