29use Wikimedia\WaitConditionLoop;
42 private $numericVersion;
45 private $lastResultHandle;
56 $this->port = intval(
$params[
'port'] ??
null );
76 protected function open( $server, $user, $password, $db, $schema, $tablePrefix ) {
77 if ( !function_exists(
'pg_connect' ) ) {
79 "Postgres functions missing, have you compiled PHP with the --with-pgsql\n" .
80 "option? (Note: if you recently installed PHP, you may need to restart your\n" .
81 "webserver and database)"
85 $this->
close( __METHOD__ );
90 'dbname' => ( $db !==
null && $db !==
'' ) ? $db :
'postgres',
92 'password' => $password
94 if ( $server !==
null && $server !==
'' ) {
95 $connectVars[
'host'] = $server;
97 if ( $this->port > 0 ) {
98 $connectVars[
'port'] = $this->port;
101 $connectVars[
'sslmode'] =
'require';
103 $connectString = $this->makeConnectionString( $connectVars );
107 $this->conn = pg_connect( $connectString, PGSQL_CONNECT_FORCE_NEW ) ?:
null;
108 }
catch ( RuntimeException $e ) {
114 if ( !$this->conn ) {
123 'client_encoding' =>
'UTF8',
124 'datestyle' =>
'ISO, YMD',
126 'standard_conforming_strings' =>
'on',
127 'bytea_output' =>
'escape',
128 'client_min_messages' =>
'ERROR'
130 foreach ( $variables as $var => $val ) {
131 $sql =
'SET ' . $this->platform->addIdentifierQuotes( $var ) .
' = ' . $this->
addQuotes( $val );
132 $query =
new Query( $sql, self::QUERY_NO_RETRY | self::QUERY_CHANGE_TRX,
'SET' );
133 $this->
query( $query, __METHOD__ );
136 $this->currentDomain =
new DatabaseDomain( $db, $schema, $tablePrefix );
137 $this->platform->setCurrentDomain( $this->currentDomain );
138 }
catch ( RuntimeException $e ) {
149 if ( $database ===
null ) {
152 $this->currentDomain->getDatabase(),
153 $domain->
getSchema() ?? $this->currentDomain->getSchema(),
156 $this->platform->setCurrentDomain( $this->currentDomain );
157 } elseif ( $this->
getDBname() !== $database ) {
161 $this->connectionParams[self::CONN_HOST],
162 $this->connectionParams[self::CONN_USER],
163 $this->connectionParams[self::CONN_PASSWORD],
169 $this->currentDomain = $domain;
170 $this->platform->setCurrentDomain( $this->currentDomain );
180 private function makeConnectionString( $vars ) {
182 foreach ( $vars as $name => $value ) {
183 $s .=
"$name='" . str_replace( [
"\\",
"'" ], [
"\\\\",
"\\'" ], $value ) .
"' ";
190 return $this->conn ? pg_close( $this->conn ) :
true;
196 $sql = mb_convert_encoding( $sql,
'UTF-8' );
198 while ( $priorRes = pg_get_result(
$conn ) ) {
199 pg_free_result( $priorRes );
202 if ( pg_send_query(
$conn, $sql ) ===
false ) {
203 throw new DBUnexpectedError( $this,
"Unable to post new query to PostgreSQL\n" );
208 $pgRes = pg_get_result(
$conn );
211 $this->lastResultHandle = $pgRes;
212 $res = pg_result_error( $pgRes ) ? false : $pgRes;
214 return new QueryStatus(
216 is_bool( $res ) ? $res : new PostgresResultWrapper( $this,
$conn, $res ),
217 $pgRes ? pg_affected_rows( $pgRes ) : 0,
227 PGSQL_DIAG_MESSAGE_PRIMARY,
228 PGSQL_DIAG_MESSAGE_DETAIL,
229 PGSQL_DIAG_MESSAGE_HINT,
230 PGSQL_DIAG_STATEMENT_POSITION,
231 PGSQL_DIAG_INTERNAL_POSITION,
232 PGSQL_DIAG_INTERNAL_QUERY,
234 PGSQL_DIAG_SOURCE_FILE,
235 PGSQL_DIAG_SOURCE_LINE,
236 PGSQL_DIAG_SOURCE_FUNCTION
238 foreach ( $diags as $d ) {
239 $this->logger->debug( sprintf(
"PgSQL ERROR(%d): %s",
241 $d, pg_result_error_field( $this->lastResultHandle, $d ) ) );
250 $qs = $this->doSingleStatementQuery(
"SELECT lastval() AS id" );
252 return $qs->res ? (int)$qs->res->fetchRow()[
'id'] : 0;
257 if ( $this->lastResultHandle ) {
259 return pg_result_error( $this->lastResultHandle );
261 return pg_last_error() ?: $this->lastConnectError;
265 return $this->getLastPHPError() ?:
'No database connection';
269 if ( $this->lastResultHandle ) {
271 $lastErrno = pg_result_error_field( $this->lastResultHandle, PGSQL_DIAG_SQLSTATE );
272 if ( $lastErrno !==
false ) {
296 $fname = __METHOD__, $options = [], $join_conds = []
298 $conds = $this->platform->normalizeConditions( $conds, $fname );
299 $column = $this->platform->extractSingleFieldFromList( $var );
300 if ( is_string( $column ) && !in_array( $column, [
'*',
'1' ] ) ) {
301 $conds[] =
"$column IS NOT NULL";
304 $options[
'EXPLAIN'] =
true;
305 $res = $this->select( $table, $var, $conds, $fname, $options, $join_conds );
308 $row = $res->fetchRow();
310 if ( preg_match(
'/rows=(\d+)/', $row[0], $count ) ) {
311 $rows = (int)$count[1];
318 public function indexInfo( $table, $index, $fname = __METHOD__ ) {
320 "SELECT indexname FROM pg_indexes WHERE tablename='$table'",
321 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
324 $res = $this->query( $query );
328 foreach ( $res as $row ) {
329 if ( $row->indexname == $this->platform->indexName( $index ) ) {
338 if ( $schema ===
false ) {
339 $schemas = $this->getCoreSchemas();
341 $schemas = [ $schema ];
344 $eindex = $this->addQuotes( $index );
346 $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE;
347 foreach ( $schemas as $schema ) {
348 $eschema = $this->addQuotes( $schema );
353 $sql = <<<__INDEXATTR__
357 i.indoption[s.g] as option,
360 (SELECT generate_series(array_lower(isub.indkey,1), array_upper(isub.indkey,1)) AS g
364 ON cis.oid=isub.indexrelid
366 ON cis.relnamespace = ns.oid
367 WHERE cis.relname=$eindex AND ns.nspname=$eschema) AS s,
373 ON ci.oid=i.indexrelid
375 ON ct.oid = i.indrelid
377 ON ci.relnamespace = n.oid
379 ci.relname=$eindex AND n.nspname=$eschema
380 AND attrelid = ct.oid
381 AND i.indkey[s.g] = attnum
382 AND i.indclass[s.g] = opcls.oid
383 AND pg_am.oid = opcls.opcmethod
385 $query =
new Query( $sql, $flags,
'SELECT' );
386 $res = $this->query( $query, __METHOD__ );
389 foreach ( $res as $row ) {
402 public function indexUnique( $table, $index, $fname = __METHOD__ ) {
403 $sql =
"SELECT indexname FROM pg_indexes WHERE tablename='{$table}'" .
404 " AND indexdef LIKE 'CREATE UNIQUE%(" .
405 $this->strencode( $this->platform->indexName( $index ) ) .
407 $query =
new Query( $sql, self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
'SELECT' );
408 $res = $this->query( $query, $fname );
409 return $res && $res->numRows() > 0;
436 array $insertOptions,
437 array $selectOptions,
440 if ( in_array(
'IGNORE', $insertOptions ) ) {
442 $destTableEnc = $this->tableName( $destTable );
444 $selectSql = $this->selectSQLText(
446 array_values( $varMap ),
453 $sql =
"INSERT INTO $destTableEnc (" . implode(
',', array_keys( $varMap ) ) .
') ' .
454 $selectSql .
' ON CONFLICT DO NOTHING';
455 $query =
new Query( $sql, self::QUERY_CHANGE_ROWS,
'INSERT', $destTable );
456 $this->query( $query, $fname );
458 parent::doInsertSelectNative( $destTable, $srcTable, $varMap, $conds, $fname,
459 $insertOptions, $selectOptions, $selectJoinConds );
474 $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE;
475 $encTable = $this->addQuotes( $table );
476 foreach ( $this->getCoreSchemas() as $schema ) {
477 $encSchema = $this->addQuotes( $schema );
478 $sql =
"SELECT column_name,udt_name " .
479 "FROM information_schema.columns " .
480 "WHERE table_name = $encTable AND table_schema = $encSchema";
481 $query =
new Query( $sql, $flags,
'SELECT' );
482 $res = $this->query( $query, __METHOD__ );
483 if ( $res->numRows() ) {
484 foreach ( $res as $row ) {
485 $typesByColumn[$row->column_name] = $row->udt_name;
491 return $typesByColumn;
495 $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE;
496 $encTable = $this->tableName( $table );
497 $sql =
"SELECT t.typname as ftype,a.atttypmod as size
498 FROM pg_class c, pg_attribute a, pg_type t
499 WHERE relname='$encTable' AND a.attrelid=c.oid AND
500 a.atttypid=t.oid and a.attname='$field'";
501 $query =
new Query( $sql, $flags,
'SELECT' );
502 $res = $this->query( $query, __METHOD__ );
503 $row = $res->fetchObject();
504 if ( $row->ftype ==
'varchar' ) {
505 $size = $row->size - 4;
515 return $this->lastErrno() ===
'40P01';
520 static $codes = [
'08000',
'08003',
'08006',
'08001',
'08004',
'57P01',
'57P03',
'53300' ];
522 return in_array( $errno, $codes,
true );
527 return ( $errno ===
'57014' );
535 $oldName, $newName, $temporary =
false, $fname = __METHOD__
537 $newNameE = $this->platform->addIdentifierQuotes( $newName );
538 $oldNameE = $this->platform->addIdentifierQuotes( $oldName );
540 $temporary = $temporary ?
'TEMPORARY' :
'';
542 "CREATE $temporary TABLE $newNameE " .
543 "(LIKE $oldNameE INCLUDING DEFAULTS INCLUDING INDEXES)",
544 self::QUERY_PSEUDO_PERMANENT | self::QUERY_CHANGE_SCHEMA,
545 $temporary ?
'CREATE TEMPORARY' :
'CREATE',
549 $ret = $this->query( $query, $fname );
554 $sql =
'SELECT attname FROM pg_class c'
555 .
' JOIN pg_namespace n ON (n.oid = c.relnamespace)'
556 .
' JOIN pg_attribute a ON (a.attrelid = c.oid)'
557 .
' JOIN pg_attrdef d ON (c.oid=d.adrelid and a.attnum=d.adnum)'
558 .
' WHERE relkind = \'r\''
559 .
' AND nspname = ' . $this->addQuotes( $this->getCoreSchema() )
560 .
' AND relname = ' . $this->addQuotes( $oldName )
561 .
' AND pg_get_expr(adbin, adrelid) LIKE \'nextval(%\'';
564 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
568 $res = $this->query( $query, $fname );
569 $row = $res->fetchObject();
571 $field = $row->attname;
572 $newSeq =
"{$newName}_{$field}_seq";
573 $fieldE = $this->platform->addIdentifierQuotes( $field );
574 $newSeqE = $this->platform->addIdentifierQuotes( $newSeq );
575 $newSeqQ = $this->addQuotes( $newSeq );
577 "CREATE $temporary SEQUENCE $newSeqE OWNED BY $newNameE.$fieldE",
578 self::QUERY_CHANGE_SCHEMA,
583 $this->query( $query, $fname );
585 "ALTER TABLE $newNameE ALTER COLUMN $fieldE SET DEFAULT nextval({$newSeqQ}::regclass)",
586 self::QUERY_CHANGE_SCHEMA,
591 $this->query( $query, $fname );
598 $sql =
"TRUNCATE TABLE " . $this->tableName( $table ) .
" RESTART IDENTITY";
599 $query =
new Query( $sql, self::QUERY_CHANGE_SCHEMA,
'TRUNCATE', $table );
600 $this->query( $query, $fname );
609 public function listTables( $prefix =
'', $fname = __METHOD__ ) {
610 $eschemas = implode(
',', array_map( [ $this,
'addQuotes' ], $this->getCoreSchemas() ) );
612 "SELECT DISTINCT tablename FROM pg_tables WHERE schemaname IN ($eschemas)",
613 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
616 $result = $this->query( $query, $fname );
619 foreach ( $result as $table ) {
620 $vars = get_object_vars( $table );
621 $table = array_pop( $vars );
622 if ( $prefix ==
'' || strpos( $table, $prefix ) === 0 ) {
623 $endArray[] = $table;
648 private function pg_array_parse( $text, &$output, $limit =
false, $offset = 1 ) {
649 if ( $limit ===
false ) {
650 $limit = strlen( $text ) - 1;
653 if ( $text ==
'{}' ) {
657 if ( $text[$offset] !=
'{' ) {
658 preg_match(
"/(\\{?\"([^\"\\\\]|\\\\.)*\"|[^,{}]+)+([,}]+)/",
659 $text, $match, 0, $offset );
660 $offset += strlen( $match[0] );
661 $output[] = ( $match[1][0] !=
'"'
663 : stripcslashes( substr( $match[1], 1, -1 ) ) );
664 if ( $match[3] ==
'},' ) {
668 $offset = $this->pg_array_parse( $text, $output, $limit, $offset + 1 );
670 }
while ( $limit > $offset );
676 return '[{{int:version-db-postgres-url}} PostgreSQL]';
688 "SELECT current_schema()",
689 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
692 $res = $this->query( $query, __METHOD__ );
693 $row = $res->fetchRow();
710 "SELECT current_schemas(false)",
711 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
714 $res = $this->query( $query, __METHOD__ );
715 $row = $res->fetchRow();
720 return $this->pg_array_parse( $row[0], $schemas );
735 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
738 $res = $this->query( $query, __METHOD__ );
739 $row = $res->fetchRow();
743 return explode(
",", $row[0] );
753 private function setSearchPath( $search_path ) {
755 "SET search_path = " . implode(
", ", $search_path ),
756 self::QUERY_CHANGE_TRX,
759 $this->query( $query, __METHOD__ );
777 if ( $this->trxLevel() ) {
782 __METHOD__ .
": a transaction is currently active"
786 if ( $this->schemaExists( $desiredSchema ) ) {
787 if ( in_array( $desiredSchema, $this->getSchemas() ) ) {
788 $this->platform->setCoreSchema( $desiredSchema );
789 $this->logger->debug(
790 "Schema \"" . $desiredSchema .
"\" already in the search path\n" );
793 $search_path = $this->getSearchPath();
794 array_unshift( $search_path, $this->platform->addIdentifierQuotes( $desiredSchema ) );
795 $this->setSearchPath( $search_path );
796 $this->platform->setCoreSchema( $desiredSchema );
797 $this->logger->debug(
798 "Schema \"" . $desiredSchema .
"\" added to the search path\n" );
801 $this->platform->setCoreSchema( $this->getCurrentSchema() );
802 $this->logger->debug(
803 "Schema \"" . $desiredSchema .
"\" not found, using current \"" .
804 $this->getCoreSchema() .
"\"\n" );
815 return $this->platform->getCoreSchema();
825 if ( $this->tempSchema ) {
826 return [ $this->tempSchema, $this->getCoreSchema() ];
829 "SELECT nspname FROM pg_catalog.pg_namespace n WHERE n.oid = pg_my_temp_schema()",
830 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
833 $res = $this->query( $query, __METHOD__ );
834 $row = $res->fetchObject();
836 $this->tempSchema = $row->nspname;
837 return [ $this->tempSchema, $this->getCoreSchema() ];
840 return [ $this->getCoreSchema() ];
844 if ( !isset( $this->numericVersion ) ) {
846 $this->numericVersion = pg_version( $this->getBindingHandle() )[
'server'];
849 return $this->numericVersion;
860 private function relationExists( $table, $types, $schema =
false ) {
861 if ( !is_array( $types ) ) {
864 if ( $schema ===
false ) {
865 $schemas = $this->getCoreSchemas();
867 $schemas = [ $schema ];
869 $table = $this->tableName( $table,
'raw' );
870 $etable = $this->addQuotes( $table );
871 foreach ( $schemas as $schema ) {
872 $eschema = $this->addQuotes( $schema );
873 $sql =
"SELECT 1 FROM pg_catalog.pg_class c, pg_catalog.pg_namespace n "
874 .
"WHERE c.relnamespace = n.oid AND c.relname = $etable AND n.nspname = $eschema "
875 .
"AND c.relkind IN ('" . implode(
"','", $types ) .
"')";
878 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
881 $res = $this->query( $query, __METHOD__ );
882 if ( $res && $res->numRows() ) {
897 public function tableExists( $table, $fname = __METHOD__, $schema =
false ) {
898 return $this->relationExists( $table, [
'r',
'v' ], $schema );
902 return $this->relationExists( $sequence,
'S', $schema );
906 foreach ( $this->getCoreSchemas() as $schema ) {
907 $sql = sprintf(
"SELECT 1 FROM information_schema.table_constraints " .
908 "WHERE constraint_schema = %s AND table_name = %s AND constraint_name = %s",
909 $this->addQuotes( $schema ),
910 $this->addQuotes( $table ),
911 $this->addQuotes( $constraint )
915 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
918 $res = $this->query( $query, __METHOD__ );
919 if ( $res && $res->numRows() ) {
932 if ( !strlen( $schema ??
'' ) ) {
936 "SELECT 1 FROM pg_catalog.pg_namespace " .
937 "WHERE nspname = " . $this->addQuotes( $schema ) .
" LIMIT 1",
938 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
941 $res = $this->query( $query, __METHOD__ );
943 return ( $res->numRows() > 0 );
953 "SELECT 1 FROM pg_catalog.pg_roles " .
954 "WHERE rolname = " . $this->addQuotes( $roleName ) .
" LIMIT 1",
955 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
958 $res = $this->query( $query, __METHOD__ );
960 return ( $res->numRows() > 0 );
973 $conn = $this->getBindingHandle();
975 return new PostgresBlob( pg_escape_bytea( $conn, $b ) );
981 } elseif ( $b instanceof
Blob ) {
985 return pg_unescape_bytea( $b );
990 return pg_escape_string( $this->getBindingHandle(), (
string)$s );
994 $conn = $this->getBindingHandle();
998 } elseif ( is_bool( $s ) ) {
999 return (
string)intval( $s );
1000 } elseif ( is_int( $s ) ) {
1002 } elseif ( $s instanceof
Blob ) {
1006 $s = pg_escape_bytea( $conn, $s->fetch() );
1013 return "'" . pg_escape_string( $conn, (
string)$s ) .
"'";
1017 # Allow dollar quoting for function declarations
1018 if ( str_starts_with( $newLine,
'$mw$' ) ) {
1019 if ( $this->delimiter ) {
1020 $this->delimiter =
false;
1022 $this->delimiter =
';';
1026 return parent::streamStatementEnd( $sql, $newLine );
1031 $this->platform->lockIsFreeSQLText( $lockName ),
1032 self::QUERY_CHANGE_LOCKS,
1035 $res = $this->query( $query, $method );
1036 $row = $res->fetchObject();
1038 return (
bool)$row->unlocked;
1041 public function doLock(
string $lockName,
string $method,
int $timeout ) {
1043 $this->platform->lockSQLText( $lockName, $timeout ),
1044 self::QUERY_CHANGE_LOCKS,
1049 $loop =
new WaitConditionLoop(
1050 function () use ( $query, $method, &$acquired ) {
1051 $res = $this->query( $query, $method );
1052 $row = $res->fetchObject();
1054 if ( $row->acquired !==
null ) {
1055 $acquired = (float)$row->acquired;
1057 return WaitConditionLoop::CONDITION_REACHED;
1060 return WaitConditionLoop::CONDITION_CONTINUE;
1069 public function doUnlock(
string $lockName,
string $method ) {
1071 $this->platform->unlockSQLText( $lockName ),
1072 self::QUERY_CHANGE_LOCKS,
1075 $result = $this->query( $query, $method );
1076 $row = $result->fetchObject();
1078 return (
bool)$row->released;
1082 $flags = self::QUERY_CHANGE_LOCKS | self::QUERY_NO_RETRY;
1085 $sql =
"SELECT pg_advisory_unlock_all()";
1086 $query =
new Query( $sql, $flags,
'UNLOCK' );
1087 $qs = $this->executeQuery( $query, __METHOD__, $flags );
1088 if ( $qs->res ===
false ) {
1089 $this->reportQueryError( $qs->message, $qs->code, $sql, $fname,
true );
1095 "SHOW default_transaction_read_only",
1096 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
1099 $res = $this->query( $query, __METHOD__ );
1100 $row = $res->fetchObject();
1102 return $row && strtolower( $row->default_transaction_read_only ) ===
'on';
1108 $flags = self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE;
1109 $encTable = $this->addQuotes( $this->tableName( $table,
'raw' ) );
1110 foreach ( $this->getCoreSchemas() as $schema ) {
1111 $encSchema = $this->addQuotes( $schema );
1113 "SELECT column_name,data_type,column_default " .
1114 "FROM information_schema.columns " .
1115 "WHERE table_name = $encTable AND table_schema = $encSchema",
1116 self::QUERY_IGNORE_DBO_TRX | self::QUERY_CHANGE_NONE,
1119 $res = $this->query( $query, __METHOD__ );
1120 if ( $res->numRows() ) {
1121 foreach ( $res as $row ) {
1123 $row->column_default !==
null &&
1124 str_starts_with( $row->column_default,
"nextval(" ) &&
1125 in_array( $row->data_type, [
'integer',
'bigint' ],
true )
1127 $column = $row->column_name;
1138 return [ self::ATTR_SCHEMAS_AS_TABLE_GROUPS => true ];
array $params
The job parameters.
Class to handle database/schema/prefix specifications for IDatabase.
Postgres database abstraction layer.
truncateTable( $table, $fname=__METHOD__)
Delete all data in a table and reset any sequences owned by that table.
getCoreSchemas()
Return schema names for temporary tables and core application tables.
determineCoreSchema( $desiredSchema)
Determine default schema for the current application Adjust this session schema search path if desire...
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table.
isQueryTimeoutError( $errno)
Checks whether the cause of the error is detected to be a timeout.
fieldInfo( $table, $field)
doLock(string $lockName, string $method, int $timeout)
isKnownStatementRollbackError( $errno)
indexAttributes( $index, $schema=false)
PostgresPlatform $platform
databasesAreIndependent()
Returns true if DBs are assumed to be on potentially different servers.
doUnlock(string $lockName, string $method)
doSingleStatementQuery(string $sql)
Run a query and return a QueryStatus instance with the query result information.
streamStatementEnd(&$sql, &$newLine)
Called by sourceStream() to check if we've reached a statement end.
doLockIsFree(string $lockName, string $method)
nextSequenceValue( $seqName)
Deprecated method, calls should be removed.
doSelectDomain(DatabaseDomain $domain)
roleExists( $roleName)
Returns true if a given role (i.e.
getSchemas()
Return list of schemas which are accessible without schema name This is list does not contain magic k...
indexInfo( $table, $index, $fname=__METHOD__)
Get information about an index into an object.
schemaExists( $schema)
Query whether a given schema exists.
estimateRowCount( $table, $var=' *', $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Estimate rows in dataset Returns estimated count, based on EXPLAIN output This is not necessarily an ...
getInsertIdColumnForUpsert( $table)
lastError()
Get the RDBMS-specific error description from the last attempted query statement.
addQuotes( $s)
Escape and quote a raw value string for use in a SQL query.
sequenceExists( $sequence, $schema=false)
wasDeadlock()
Determines if the last failure was due to a deadlock.
__construct(array $params)
lastErrno()
Get the RDBMS-specific error code from the last attempted query statement.
getCoreSchema()
Return schema name for core application tables.
strencode( $s)
Wrapper for addslashes()
lastInsertId()
Get a row ID from the last insert statement to implicitly assign one within the session.
isConnectionError( $errno)
Do not use this method outside of Database/DBError classes.
indexUnique( $table, $index, $fname=__METHOD__)
Determines if a given index is unique.
open( $server, $user, $password, $db, $schema, $tablePrefix)
Open a new connection to the database (closing any existing one)
getServerVersion()
A string describing the current software version.
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
getCurrentSchema()
Return current schema (executes SELECT current_schema()) Needs transaction.
getSearchPath()
Return search patch for schemas This is different from getSchemas() since it contain magic keywords (...
tableExists( $table, $fname=__METHOD__, $schema=false)
For backward compatibility, this function checks both tables and views.
decodeBlob( $b)
Some DBMSs return a special placeholder object representing blob fields in result objects.
encodeBlob( $b)
Some DBMSs have a special format for inserting into blob fields, they don't allow simple quoted strin...
closeConnection()
Closes underlying database connection.
getValueTypesForWithClause( $table)
constraintExists( $table, $constraint)
getType()
Get the RDBMS type of the server (e.g.
doFlushSession( $fname)
Reset the server-side session state for named locks and table locks.
listTables( $prefix='', $fname=__METHOD__)
getSoftwareLink()
Returns a wikitext style link to the DB's website (e.g.
doInsertSelectNative( $destTable, $srcTable, array $varMap, $conds, $fname, array $insertOptions, array $selectOptions, $selectJoinConds)
INSERT SELECT wrapper $varMap must be an associative array of the form [ 'dest1' => 'source1',...
serverIsReadOnly()
bool Whether this DB server is running in server-side read-only mode query} 1.28
static fromText(DatabasePostgres $db, $table, $field)