3 * This is the Postgres 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
24 class PostgresField
implements Field
{
25 private $name, $tablename, $type, $nullable, $max_length, $deferred, $deferrable, $conname,
26 $has_default, $default;
29 * @param DatabaseBase $db
30 * @param string $table
31 * @param string $field
32 * @return null|PostgresField
34 static function fromText( $db, $table, $field ) {
37 attnotnull, attlen, conname AS conname,
40 COALESCE(condeferred, 'f') AS deferred,
41 COALESCE(condeferrable, 'f') AS deferrable,
42 CASE WHEN typname = 'int2' THEN 'smallint'
43 WHEN typname = 'int4' THEN 'integer'
44 WHEN typname = 'int8' THEN 'bigint'
45 WHEN typname = 'bpchar' THEN 'char'
46 ELSE typname END AS typname
48 JOIN pg_namespace n ON (n.oid = c.relnamespace)
49 JOIN pg_attribute a ON (a.attrelid = c.oid)
50 JOIN pg_type t ON (t.oid = a.atttypid)
51 LEFT JOIN pg_constraint o ON (o.conrelid = c.oid AND a.attnum = ANY(o.conkey) AND o.contype = 'f')
52 LEFT JOIN pg_attrdef d on c.oid=d.adrelid and a.attnum=d.adnum
59 $table = $db->tableName( $table, 'raw' );
62 $db->addQuotes( $db->getCoreSchema() ),
63 $db->addQuotes( $table ),
64 $db->addQuotes( $field )
67 $row = $db->fetchObject( $res );
71 $n = new PostgresField
;
72 $n->type
= $row->typname
;
73 $n->nullable
= ( $row->attnotnull
== 'f' );
75 $n->tablename
= $table;
76 $n->max_length
= $row->attlen
;
77 $n->deferrable
= ( $row->deferrable
== 't' );
78 $n->deferred
= ( $row->deferred
== 't' );
79 $n->conname
= $row->conname
;
80 $n->has_default
= ( $row->atthasdef
=== 't' );
81 $n->default = $row->adsrc
;
90 function tableName() {
91 return $this->tablename
;
98 function isNullable() {
99 return $this->nullable
;
102 function maxLength() {
103 return $this->max_length
;
106 function is_deferrable() {
107 return $this->deferrable
;
110 function is_deferred() {
111 return $this->deferred
;
115 return $this->conname
;
121 function defaultValue() {
122 if ( $this->has_default
) {
123 return $this->default;
131 * Used to debug transaction processing
132 * Only used if $wgDebugDBTransactions is true
137 class PostgresTransactionState
{
138 private static $WATCHED = array(
140 "desc" => "%s: Connection state changed from %s -> %s\n",
142 PGSQL_CONNECTION_OK
=> "OK",
143 PGSQL_CONNECTION_BAD
=> "BAD"
147 "desc" => "%s: Transaction state changed from %s -> %s\n",
149 PGSQL_TRANSACTION_IDLE
=> "IDLE",
150 PGSQL_TRANSACTION_ACTIVE
=> "ACTIVE",
151 PGSQL_TRANSACTION_INTRANS
=> "TRANS",
152 PGSQL_TRANSACTION_INERROR
=> "ERROR",
153 PGSQL_TRANSACTION_UNKNOWN
=> "UNKNOWN"
162 private $mCurrentState;
164 public function __construct( $conn ) {
165 $this->mConn
= $conn;
167 $this->mCurrentState
= $this->mNewState
;
170 public function update() {
171 $this->mNewState
= array(
172 pg_connection_status( $this->mConn
),
173 pg_transaction_status( $this->mConn
)
177 public function check() {
178 global $wgDebugDBTransactions;
180 if ( $wgDebugDBTransactions ) {
181 if ( $this->mCurrentState
!== $this->mNewState
) {
182 $old = reset( $this->mCurrentState
);
183 $new = reset( $this->mNewState
);
184 foreach ( self
::$WATCHED as $watched ) {
185 if ( $old !== $new ) {
186 $this->log_changed( $old, $new, $watched );
188 $old = next( $this->mCurrentState
);
189 $new = next( $this->mNewState
);
193 $this->mCurrentState
= $this->mNewState
;
196 protected function describe_changed( $status, $desc_table ) {
197 if ( isset( $desc_table[$status] ) ) {
198 return $desc_table[$status];
200 return "STATUS " . $status;
204 protected function log_changed( $old, $new, $watched ) {
205 wfDebug( sprintf( $watched["desc"],
207 $this->describe_changed( $old, $watched["states"] ),
208 $this->describe_changed( $new, $watched["states"] )
214 * Manage savepoints within a transaction
218 class SavepointPostgres
{
219 /** @var DatabaseBase Establish a savepoint within a transaction */
225 * @param DatabaseBase $dbw
228 public function __construct( $dbw, $id ) {
231 $this->didbegin
= false;
232 /* If we are not in a transaction, we need to be for savepoint trickery */
233 if ( !$dbw->trxLevel() ) {
234 $dbw->begin( "FOR SAVEPOINT" );
235 $this->didbegin
= true;
239 public function __destruct() {
240 if ( $this->didbegin
) {
241 $this->dbw
->rollback();
242 $this->didbegin
= false;
246 public function commit() {
247 if ( $this->didbegin
) {
248 $this->dbw
->commit();
249 $this->didbegin
= false;
253 protected function query( $keyword, $msg_ok, $msg_failed ) {
254 global $wgDebugDBTransactions;
255 if ( $this->dbw
->doQuery( $keyword . " " . $this->id
) !== false ) {
256 if ( $wgDebugDBTransactions ) {
257 wfDebug( sprintf( $msg_ok, $this->id
) );
260 wfDebug( sprintf( $msg_failed, $this->id
) );
264 public function savepoint() {
265 $this->query( "SAVEPOINT",
266 "Transaction state: savepoint \"%s\" established.\n",
267 "Transaction state: establishment of savepoint \"%s\" FAILED.\n"
271 public function release() {
272 $this->query( "RELEASE",
273 "Transaction state: savepoint \"%s\" released.\n",
274 "Transaction state: release of savepoint \"%s\" FAILED.\n"
278 public function rollback() {
279 $this->query( "ROLLBACK TO",
280 "Transaction state: savepoint \"%s\" rolled back.\n",
281 "Transaction state: rollback of savepoint \"%s\" FAILED.\n"
285 public function __toString() {
286 return (string)$this->id
;
293 class DatabasePostgres
extends DatabaseBase
{
295 protected $mLastResult = null;
297 /** @var int The number of rows affected as an integer */
298 protected $mAffectedRows = null;
301 private $mInsertId = null;
303 /** @var float|string */
304 private $numericVersion = null;
306 /** @var string Connect string to open a PostgreSQL connection */
307 private $connectString;
309 /** @var PostgresTransactionState */
310 private $mTransactionState;
313 private $mCoreSchema;
319 function cascadingDeletes() {
323 function cleanupTriggers() {
327 function strictIPs() {
331 function realTimestamps() {
335 function implicitGroupby() {
339 function implicitOrderby() {
343 function searchableIPs() {
347 function functionalIndexes() {
351 function hasConstraint( $name ) {
352 $sql = "SELECT 1 FROM pg_catalog.pg_constraint c, pg_catalog.pg_namespace n " .
353 "WHERE c.connamespace = n.oid AND conname = '" .
354 pg_escape_string( $this->mConn
, $name ) . "' AND n.nspname = '" .
355 pg_escape_string( $this->mConn
, $this->getCoreSchema() ) . "'";
356 $res = $this->doQuery( $sql );
358 return $this->numRows( $res );
362 * Usually aborts on failure
363 * @param string $server
364 * @param string $user
365 * @param string $password
366 * @param string $dbName
367 * @throws DBConnectionError|Exception
368 * @return DatabaseBase|null
370 function open( $server, $user, $password, $dbName ) {
371 # Test for Postgres support, to avoid suppressed fatal error
372 if ( !function_exists( 'pg_connect' ) ) {
373 throw new DBConnectionError(
375 "Postgres functions missing, have you compiled PHP with the --with-pgsql\n" .
376 "option? (Note: if you recently installed PHP, you may need to restart your\n" .
377 "webserver and database)\n"
383 if ( !strlen( $user ) ) { # e.g. the class is being loaded
387 $this->mServer
= $server;
389 $this->mUser
= $user;
390 $this->mPassword
= $password;
391 $this->mDBname
= $dbName;
393 $connectVars = array(
396 'password' => $password
398 if ( $server != false && $server != '' ) {
399 $connectVars['host'] = $server;
401 if ( $port != false && $port != '' ) {
402 $connectVars['port'] = $port;
404 if ( $this->mFlags
& DBO_SSL
) {
405 $connectVars['sslmode'] = 1;
408 $this->connectString
= $this->makeConnectionString( $connectVars, PGSQL_CONNECT_FORCE_NEW
);
410 $this->installErrorHandler();
413 $this->mConn
= pg_connect( $this->connectString
);
414 } catch ( Exception
$ex ) {
415 $this->restoreErrorHandler();
419 $phpError = $this->restoreErrorHandler();
421 if ( !$this->mConn
) {
422 wfDebug( "DB connection error\n" );
423 wfDebug( "Server: $server, Database: $dbName, User: $user, Password: " .
424 substr( $password, 0, 3 ) . "...\n" );
425 wfDebug( $this->lastError() . "\n" );
426 throw new DBConnectionError( $this, str_replace( "\n", ' ', $phpError ) );
429 $this->mOpened
= true;
430 $this->mTransactionState
= new PostgresTransactionState( $this->mConn
);
432 global $wgCommandLineMode;
433 # If called from the command-line (e.g. importDump), only show errors
434 if ( $wgCommandLineMode ) {
435 $this->doQuery( "SET client_min_messages = 'ERROR'" );
438 $this->query( "SET client_encoding='UTF8'", __METHOD__
);
439 $this->query( "SET datestyle = 'ISO, YMD'", __METHOD__
);
440 $this->query( "SET timezone = 'GMT'", __METHOD__
);
441 $this->query( "SET standard_conforming_strings = on", __METHOD__
);
442 if ( $this->getServerVersion() >= 9.0 ) {
443 $this->query( "SET bytea_output = 'escape'", __METHOD__
); // PHP bug 53127
446 global $wgDBmwschema;
447 $this->determineCoreSchema( $wgDBmwschema );
453 * Postgres doesn't support selectDB in the same way MySQL does. So if the
454 * DB name doesn't match the open connection, open a new one
458 function selectDB( $db ) {
459 if ( $this->mDBname
!== $db ) {
460 return (bool)$this->open( $this->mServer
, $this->mUser
, $this->mPassword
, $db );
466 function makeConnectionString( $vars ) {
468 foreach ( $vars as $name => $value ) {
469 $s .= "$name='" . str_replace( "'", "\\'", $value ) . "' ";
476 * Closes a database connection, if it is open
477 * Returns success, true if already closed
480 protected function closeConnection() {
481 return pg_close( $this->mConn
);
484 public function doQuery( $sql ) {
485 if ( function_exists( 'mb_convert_encoding' ) ) {
486 $sql = mb_convert_encoding( $sql, 'UTF-8' );
488 $this->mTransactionState
->check();
489 if ( pg_send_query( $this->mConn
, $sql ) === false ) {
490 throw new DBUnexpectedError( $this, "Unable to post new query to PostgreSQL\n" );
492 $this->mLastResult
= pg_get_result( $this->mConn
);
493 $this->mTransactionState
->check();
494 $this->mAffectedRows
= null;
495 if ( pg_result_error( $this->mLastResult
) ) {
499 return $this->mLastResult
;
502 protected function dumpError() {
506 PGSQL_DIAG_MESSAGE_PRIMARY
,
507 PGSQL_DIAG_MESSAGE_DETAIL
,
508 PGSQL_DIAG_MESSAGE_HINT
,
509 PGSQL_DIAG_STATEMENT_POSITION
,
510 PGSQL_DIAG_INTERNAL_POSITION
,
511 PGSQL_DIAG_INTERNAL_QUERY
,
513 PGSQL_DIAG_SOURCE_FILE
,
514 PGSQL_DIAG_SOURCE_LINE
,
515 PGSQL_DIAG_SOURCE_FUNCTION
517 foreach ( $diags as $d ) {
518 wfDebug( sprintf( "PgSQL ERROR(%d): %s\n",
519 $d, pg_result_error_field( $this->mLastResult
, $d ) ) );
523 function reportQueryError( $error, $errno, $sql, $fname, $tempIgnore = false ) {
525 /* Check for constraint violation */
526 if ( $errno === '23505' ) {
527 parent
::reportQueryError( $error, $errno, $sql, $fname, $tempIgnore );
532 /* Transaction stays in the ERROR state until rolledback */
533 if ( $this->mTrxLevel
) {
534 $this->rollback( __METHOD__
);
536 parent
::reportQueryError( $error, $errno, $sql, $fname, false );
539 function queryIgnore( $sql, $fname = __METHOD__
) {
540 return $this->query( $sql, $fname, true );
544 * @param stdClass|ResultWrapper $res
545 * @throws DBUnexpectedError
547 function freeResult( $res ) {
548 if ( $res instanceof ResultWrapper
) {
551 wfSuppressWarnings();
552 $ok = pg_free_result( $res );
555 throw new DBUnexpectedError( $this, "Unable to free Postgres result\n" );
560 * @param ResultWrapper|stdClass $res
562 * @throws DBUnexpectedError
564 function fetchObject( $res ) {
565 if ( $res instanceof ResultWrapper
) {
568 wfSuppressWarnings();
569 $row = pg_fetch_object( $res );
571 # @todo FIXME: HACK HACK HACK HACK debug
573 # @todo hashar: not sure if the following test really trigger if the object
575 if ( pg_last_error( $this->mConn
) ) {
576 throw new DBUnexpectedError(
578 'SQL error: ' . htmlspecialchars( pg_last_error( $this->mConn
) )
585 function fetchRow( $res ) {
586 if ( $res instanceof ResultWrapper
) {
589 wfSuppressWarnings();
590 $row = pg_fetch_array( $res );
592 if ( pg_last_error( $this->mConn
) ) {
593 throw new DBUnexpectedError(
595 'SQL error: ' . htmlspecialchars( pg_last_error( $this->mConn
) )
602 function numRows( $res ) {
603 if ( $res instanceof ResultWrapper
) {
606 wfSuppressWarnings();
607 $n = pg_num_rows( $res );
609 if ( pg_last_error( $this->mConn
) ) {
610 throw new DBUnexpectedError(
612 'SQL error: ' . htmlspecialchars( pg_last_error( $this->mConn
) )
619 function numFields( $res ) {
620 if ( $res instanceof ResultWrapper
) {
624 return pg_num_fields( $res );
627 function fieldName( $res, $n ) {
628 if ( $res instanceof ResultWrapper
) {
632 return pg_field_name( $res, $n );
636 * Return the result of the last call to nextSequenceValue();
637 * This must be called after nextSequenceValue().
641 function insertId() {
642 return $this->mInsertId
;
650 function dataSeek( $res, $row ) {
651 if ( $res instanceof ResultWrapper
) {
655 return pg_result_seek( $res, $row );
658 function lastError() {
659 if ( $this->mConn
) {
660 if ( $this->mLastResult
) {
661 return pg_result_error( $this->mLastResult
);
663 return pg_last_error();
666 return 'No database connection';
670 function lastErrno() {
671 if ( $this->mLastResult
) {
672 return pg_result_error_field( $this->mLastResult
, PGSQL_DIAG_SQLSTATE
);
678 function affectedRows() {
679 if ( !is_null( $this->mAffectedRows
) ) {
680 // Forced result for simulated queries
681 return $this->mAffectedRows
;
683 if ( empty( $this->mLastResult
) ) {
687 return pg_affected_rows( $this->mLastResult
);
691 * Estimate rows in dataset
692 * Returns estimated count, based on EXPLAIN output
693 * This is not necessarily an accurate estimate, so use sparingly
694 * Returns -1 if count cannot be found
695 * Takes same arguments as Database::select()
697 * @param string $table
698 * @param string $vars
699 * @param string $conds
700 * @param string $fname
701 * @param array $options
704 function estimateRowCount( $table, $vars = '*', $conds = '',
705 $fname = __METHOD__
, $options = array()
707 $options['EXPLAIN'] = true;
708 $res = $this->select( $table, $vars, $conds, $fname, $options );
711 $row = $this->fetchRow( $res );
713 if ( preg_match( '/rows=(\d+)/', $row[0], $count ) ) {
722 * Returns information about an index
723 * If errors are explicitly ignored, returns NULL on failure
725 * @param string $table
726 * @param string $index
727 * @param string $fname
730 function indexInfo( $table, $index, $fname = __METHOD__
) {
731 $sql = "SELECT indexname FROM pg_indexes WHERE tablename='$table'";
732 $res = $this->query( $sql, $fname );
736 foreach ( $res as $row ) {
737 if ( $row->indexname
== $this->indexName( $index ) ) {
746 * Returns is of attributes used in index
749 * @param string $index
750 * @param bool|string $schema
753 function indexAttributes( $index, $schema = false ) {
754 if ( $schema === false ) {
755 $schema = $this->getCoreSchema();
758 * A subquery would be not needed if we didn't care about the order
759 * of attributes, but we do
761 $sql = <<<__INDEXATTR__
765 i.indoption[s.g] as option,
768 (SELECT generate_series(array_lower(isub.indkey,1), array_upper(isub.indkey,1)) AS g
772 ON cis.oid=isub.indexrelid
774 ON cis.relnamespace = ns.oid
775 WHERE cis.relname='$index' AND ns.nspname='$schema') AS s,
781 ON ci.oid=i.indexrelid
783 ON ct.oid = i.indrelid
785 ON ci.relnamespace = n.oid
787 ci.relname='$index' AND n.nspname='$schema'
788 AND attrelid = ct.oid
789 AND i.indkey[s.g] = attnum
790 AND i.indclass[s.g] = opcls.oid
791 AND pg_am.oid = opcls.opcmethod
793 $res = $this->query( $sql, __METHOD__ );
796 foreach ( $res as $row ) {
810 function indexUnique( $table, $index, $fname = __METHOD__ ) {
811 $sql = "SELECT indexname FROM pg_indexes WHERE tablename='{$table}'" .
812 " AND indexdef LIKE 'CREATE UNIQUE%(" .
813 $this->strencode( $this->indexName( $index ) ) .
815 $res = $this->query( $sql, $fname );
820 return $res->numRows() > 0;
824 * Change the FOR UPDATE option as necessary based on the join conditions. Then pass
825 * to the parent function to get the actual SQL text.
827 * In Postgres when using FOR UPDATE, only the main table and tables that are inner joined
828 * can be locked. That means tables in an outer join cannot be FOR UPDATE locked. Trying to do
829 * so causes a DB error. This wrapper checks which tables can be locked and adjusts it accordingly.
831 function selectSQLText( $table, $vars, $conds = '', $fname = __METHOD__,
832 $options = array(), $join_conds = array()
834 if ( is_array( $options ) ) {
835 $forUpdateKey = array_search( 'FOR UPDATE', $options, true );
836 if ( $forUpdateKey !== false && $join_conds ) {
837 unset( $options[$forUpdateKey] );
839 foreach ( $join_conds as $table_cond => $join_cond ) {
840 if ( 0 === preg_match( '/^(?:LEFT|RIGHT|FULL)(?: OUTER)? JOIN$/i', $join_cond[0] ) ) {
841 $options['FOR UPDATE'][] = $table_cond;
847 return parent::selectSQLText( $table, $vars, $conds, $fname, $options, $join_conds );
851 * INSERT wrapper, inserts an array into a table
853 * $args may be a single associative array, or an array of these with numeric keys,
854 * for multi-row insert (Postgres version 8.2 and above only).
856 * @param string $table Name of the table to insert to.
857 * @param array $args Items to insert into the table.
858 * @param string $fname Name of the function, for profiling
859 * @param array|string $options String or array. Valid options: IGNORE
860 * @return bool Success of insert operation. IGNORE always returns true.
862 function insert( $table, $args, $fname = __METHOD__, $options = array() ) {
863 if ( !count( $args ) ) {
867 $table = $this->tableName( $table );
868 if ( !isset( $this->numericVersion ) ) {
869 $this->getServerVersion();
872 if ( !is_array( $options ) ) {
873 $options = array( $options );
876 if ( isset( $args[0] ) && is_array( $args[0] ) ) {
878 $keys = array_keys( $args[0] );
881 $keys = array_keys( $args );
884 // If IGNORE is set, we use savepoints to emulate mysql's behavior
886 if ( in_array( 'IGNORE', $options ) ) {
887 $savepoint = new SavepointPostgres( $this, 'mw' );
888 $olde = error_reporting( 0 );
889 // For future use, we may want to track the number of actual inserts
890 // Right now, insert (all writes) simply return true/false
891 $numrowsinserted = 0;
894 $sql = "INSERT INTO $table (" . implode( ',', $keys ) . ') VALUES ';
897 if ( $this->numericVersion >= 8.2 && !$savepoint ) {
899 foreach ( $args as $row ) {
905 $sql .= '(' . $this->makeList( $row ) . ')';
907 $res = (bool)$this->query( $sql, $fname, $savepoint );
911 foreach ( $args as $row ) {
913 $tempsql .= '(' . $this->makeList( $row ) . ')';
916 $savepoint->savepoint();
919 $tempres = (bool)$this->query( $tempsql, $fname, $savepoint );
922 $bar = pg_last_error();
923 if ( $bar != false ) {
924 $savepoint->rollback();
926 $savepoint->release();
931 // If any of them fail, we fail overall for this function call
932 // Note that this will be ignored if IGNORE is set
939 // Not multi, just a lone insert
941 $savepoint->savepoint();
944 $sql .= '(' . $this->makeList( $args ) . ')';
945 $res = (bool)$this->query( $sql, $fname, $savepoint );
947 $bar = pg_last_error();
948 if ( $bar != false ) {
949 $savepoint->rollback();
951 $savepoint->release();
957 error_reporting( $olde );
958 $savepoint->commit();
960 // Set the affected row count for the whole operation
961 $this->mAffectedRows = $numrowsinserted;
963 // IGNORE always returns true
971 * INSERT SELECT wrapper
972 * $varMap must be an associative array of the form array( 'dest1' => 'source1', ...)
973 * Source items may be literals rather then field names, but strings should
974 * be quoted with Database::addQuotes()
975 * $conds may be "*" to copy the whole table
976 * srcTable may be an array of tables.
977 * @todo FIXME: Implement this a little better (seperate select/insert)?
979 * @param string $destTable
980 * @param array|string $srcTable
981 * @param array $varMap
982 * @param array $conds
983 * @param string $fname
984 * @param array $insertOptions
985 * @param array $selectOptions
988 function insertSelect( $destTable, $srcTable, $varMap, $conds, $fname = __METHOD__,
989 $insertOptions = array(), $selectOptions = array() ) {
990 $destTable = $this->tableName( $destTable );
992 if ( !is_array( $insertOptions ) ) {
993 $insertOptions = array( $insertOptions );
997 * If IGNORE is set, we use savepoints to emulate mysql's behavior
998 * Ignore LOW PRIORITY option, since it is MySQL-specific
1001 if ( in_array( 'IGNORE', $insertOptions ) ) {
1002 $savepoint = new SavepointPostgres( $this, 'mw' );
1003 $olde = error_reporting( 0 );
1004 $numrowsinserted = 0;
1005 $savepoint->savepoint();
1008 if ( !is_array( $selectOptions ) ) {
1009 $selectOptions = array( $selectOptions );
1011 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
1012 if ( is_array( $srcTable ) ) {
1013 $srcTable = implode( ',', array_map( array( &$this, 'tableName' ), $srcTable ) );
1015 $srcTable = $this->tableName( $srcTable );
1018 $sql = "INSERT INTO $destTable (" . implode( ',', array_keys( $varMap ) ) . ')' .
1019 " SELECT $startOpts " . implode( ',', $varMap ) .
1020 " FROM $srcTable $useIndex";
1022 if ( $conds != '*' ) {
1023 $sql .= ' WHERE ' . $this->makeList( $conds, LIST_AND );
1026 $sql .= " $tailOpts";
1028 $res = (bool)$this->query( $sql, $fname, $savepoint );
1030 $bar = pg_last_error();
1031 if ( $bar != false ) {
1032 $savepoint->rollback();
1034 $savepoint->release();
1037 error_reporting( $olde );
1038 $savepoint->commit();
1040 // Set the affected row count for the whole operation
1041 $this->mAffectedRows = $numrowsinserted;
1043 // IGNORE always returns true
1050 function tableName( $name, $format = 'quoted' ) {
1051 # Replace reserved words with better ones
1054 return $this->realTableName( 'mwuser', $format );
1056 return $this->realTableName( 'pagecontent', $format );
1058 return $this->realTableName( $name, $format );
1062 /* Don't cheat on installer */
1063 function realTableName( $name, $format = 'quoted' ) {
1064 return parent::tableName( $name, $format );
1068 * Return the next in a sequence, save the value for retrieval via insertId()
1070 * @param string $seqName
1073 function nextSequenceValue( $seqName ) {
1074 $safeseq = str_replace( "'", "''", $seqName );
1075 $res = $this->query( "SELECT nextval('$safeseq')" );
1076 $row = $this->fetchRow( $res );
1077 $this->mInsertId = $row[0];
1079 return $this->mInsertId;
1083 * Return the current value of a sequence. Assumes it has been nextval'ed in this session.
1085 * @param string $seqName
1088 function currentSequenceValue( $seqName ) {
1089 $safeseq = str_replace( "'", "''", $seqName );
1090 $res = $this->query( "SELECT currval('$safeseq')" );
1091 $row = $this->fetchRow( $res );
1097 # Returns the size of a text field, or -1 for "unlimited"
1098 function textFieldSize( $table, $field ) {
1099 $table = $this->tableName( $table );
1100 $sql = "SELECT t.typname as ftype,a.atttypmod as size
1101 FROM pg_class c, pg_attribute a, pg_type t
1102 WHERE relname='$table' AND a.attrelid=c.oid AND
1103 a.atttypid=t.oid and a.attname='$field'";
1104 $res = $this->query( $sql );
1105 $row = $this->fetchObject( $res );
1106 if ( $row->ftype == 'varchar' ) {
1107 $size = $row->size - 4;
1115 function limitResult( $sql, $limit, $offset = false ) {
1116 return "$sql LIMIT $limit " . ( is_numeric( $offset ) ? " OFFSET {$offset} " : '' );
1119 function wasDeadlock() {
1120 return $this->lastErrno() == '40P01';
1123 function duplicateTableStructure( $oldName, $newName, $temporary = false, $fname = __METHOD__ ) {
1124 $newName = $this->addIdentifierQuotes( $newName );
1125 $oldName = $this->addIdentifierQuotes( $oldName );
1127 return $this->query( 'CREATE ' . ( $temporary ? 'TEMPORARY ' : '' ) . " TABLE $newName " .
1128 "(LIKE $oldName INCLUDING DEFAULTS)", $fname );
1131 function listTables( $prefix = null, $fname = __METHOD__ ) {
1132 $eschema = $this->addQuotes( $this->getCoreSchema() );
1133 $result = $this->query( "SELECT tablename FROM pg_tables WHERE schemaname = $eschema", $fname );
1134 $endArray = array();
1136 foreach ( $result as $table ) {
1137 $vars = get_object_vars( $table );
1138 $table = array_pop( $vars );
1139 if ( !$prefix || strpos( $table, $prefix ) === 0 ) {
1140 $endArray[] = $table;
1147 function timestamp( $ts = 0 ) {
1148 return wfTimestamp( TS_POSTGRES, $ts );
1152 * Posted by cc[plus]php[at]c2se[dot]com on 25-Mar-2009 09:12
1153 * to http://www.php.net/manual/en/ref.pgsql.php
1155 * Parsing a postgres array can be a tricky problem, he's my
1156 * take on this, it handles multi-dimensional arrays plus
1157 * escaping using a nasty regexp to determine the limits of each
1160 * This should really be handled by PHP PostgreSQL module
1163 * @param string $text Postgreql array returned in a text form like {a,b}
1164 * @param string $output
1166 * @param int $offset
1169 function pg_array_parse( $text, &$output, $limit = false, $offset = 1 ) {
1170 if ( false === $limit ) {
1171 $limit = strlen( $text ) - 1;
1174 if ( '{}' == $text ) {
1178 if ( '{' != $text[$offset] ) {
1179 preg_match( "/(\\{?\"([^\"\\\\]|\\\\.)*\"|[^,{}]+)+([,}]+)/",
1180 $text, $match, 0, $offset );
1181 $offset += strlen( $match[0] );
1182 $output[] = ( '"' != $match[1][0]
1184 : stripcslashes( substr( $match[1], 1, -1 ) ) );
1185 if ( '},' == $match[3] ) {
1189 $offset = $this->pg_array_parse( $text, $output, $limit, $offset + 1 );
1191 } while ( $limit > $offset );
1197 * Return aggregated value function call
1199 public function aggregateValue( $valuedata, $valuename = 'value' ) {
1204 * @return string Wikitext of a link to the server software's web site
1206 public function getSoftwareLink() {
1207 return '[{{int:version-db-postgres-url}} PostgreSQL]';
1211 * Return current schema (executes SELECT current_schema())
1215 * @return string Default schema for the current session
1217 function getCurrentSchema() {
1218 $res = $this->query( "SELECT current_schema()", __METHOD__ );
1219 $row = $this->fetchRow( $res );
1225 * Return list of schemas which are accessible without schema name
1226 * This is list does not contain magic keywords like "$user"
1229 * @see getSearchPath()
1230 * @see setSearchPath()
1232 * @return array list of actual schemas for the current sesson
1234 function getSchemas() {
1235 $res = $this->query( "SELECT current_schemas(false)", __METHOD__ );
1236 $row = $this->fetchRow( $res );
1239 /* PHP pgsql support does not support array type, "{a,b}" string is returned */
1241 return $this->pg_array_parse( $row[0], $schemas );
1245 * Return search patch for schemas
1246 * This is different from getSchemas() since it contain magic keywords
1251 * @return array How to search for table names schemas for the current user
1253 function getSearchPath() {
1254 $res = $this->query( "SHOW search_path", __METHOD__ );
1255 $row = $this->fetchRow( $res );
1257 /* PostgreSQL returns SHOW values as strings */
1259 return explode( ",", $row[0] );
1263 * Update search_path, values should already be sanitized
1264 * Values may contain magic keywords like "$user"
1267 * @param array $search_path List of schemas to be searched by default
1269 function setSearchPath( $search_path ) {
1270 $this->query( "SET search_path = " . implode( ", ", $search_path ) );
1274 * Determine default schema for MediaWiki core
1275 * Adjust this session schema search path if desired schema exists
1276 * and is not alread there.
1278 * We need to have name of the core schema stored to be able
1279 * to query database metadata.
1281 * This will be also called by the installer after the schema is created
1285 * @param string $desiredSchema
1287 function determineCoreSchema( $desiredSchema ) {
1288 $this->begin( __METHOD__ );
1289 if ( $this->schemaExists( $desiredSchema ) ) {
1290 if ( in_array( $desiredSchema, $this->getSchemas() ) ) {
1291 $this->mCoreSchema = $desiredSchema;
1292 wfDebug( "Schema \"" . $desiredSchema . "\" already in the search path\n" );
1295 * Prepend our schema (e.g. 'mediawiki') in front
1296 * of the search path
1299 $search_path = $this->getSearchPath();
1300 array_unshift( $search_path,
1301 $this->addIdentifierQuotes( $desiredSchema ) );
1302 $this->setSearchPath( $search_path );
1303 $this->mCoreSchema = $desiredSchema;
1304 wfDebug( "Schema \"" . $desiredSchema . "\" added to the search path\n" );
1307 $this->mCoreSchema = $this->getCurrentSchema();
1308 wfDebug( "Schema \"" . $desiredSchema . "\" not found, using current \"" .
1309 $this->mCoreSchema . "\"\n" );
1311 /* Commit SET otherwise it will be rollbacked on error or IGNORE SELECT */
1312 $this->commit( __METHOD__ );
1316 * Return schema name fore core MediaWiki tables
1319 * @return string core schema name
1321 function getCoreSchema() {
1322 return $this->mCoreSchema;
1326 * @return string Version information from the database
1328 function getServerVersion() {
1329 if ( !isset( $this->numericVersion ) ) {
1330 $versionInfo = pg_version( $this->mConn );
1331 if ( version_compare( $versionInfo['client'], '7.4.0', 'lt' ) ) {
1332 // Old client, abort install
1333 $this->numericVersion = '7.3 or earlier';
1334 } elseif ( isset( $versionInfo['server'] ) ) {
1336 $this->numericVersion = $versionInfo['server'];
1338 // Bug 16937: broken pgsql extension from PHP<5.3
1339 $this->numericVersion = pg_parameter_status( $this->mConn, 'server_version' );
1343 return $this->numericVersion;
1347 * Query whether a given relation exists (in the given schema, or the
1348 * default mw one if not given)
1349 * @param string $table
1350 * @param array|string $types
1351 * @param bool|string $schema
1354 function relationExists( $table, $types, $schema = false ) {
1355 if ( !is_array( $types ) ) {
1356 $types = array( $types );
1359 $schema = $this->getCoreSchema();
1361 $table = $this->realTableName( $table, 'raw' );
1362 $etable = $this->addQuotes( $table );
1363 $eschema = $this->addQuotes( $schema );
1364 $sql = "SELECT 1 FROM pg_catalog.pg_class c, pg_catalog.pg_namespace n "
1365 . "WHERE c.relnamespace = n.oid AND c.relname = $etable AND n.nspname = $eschema "
1366 . "AND c.relkind IN ('" . implode( "','", $types ) . "')";
1367 $res = $this->query( $sql );
1368 $count = $res ? $res->numRows() : 0;
1370 return (bool)$count;
1374 * For backward compatibility, this function checks both tables and
1376 * @param string $table
1377 * @param string $fname
1378 * @param bool|string $schema
1381 function tableExists( $table, $fname = __METHOD__, $schema = false ) {
1382 return $this->relationExists( $table, array( 'r', 'v' ), $schema );
1385 function sequenceExists( $sequence, $schema = false ) {
1386 return $this->relationExists( $sequence, 'S', $schema );
1389 function triggerExists( $table, $trigger ) {
1391 SELECT 1 FROM pg_class, pg_namespace, pg_trigger
1392 WHERE relnamespace=pg_namespace.oid AND relkind='r'
1393 AND tgrelid=pg_class.oid
1394 AND nspname=%s AND relname=%s AND tgname=%s
1396 $res = $this->query(
1399 $this->addQuotes( $this->getCoreSchema() ),
1400 $this->addQuotes( $table ),
1401 $this->addQuotes( $trigger )
1407 $rows = $res->numRows();
1412 function ruleExists( $table, $rule ) {
1413 $exists = $this->selectField( 'pg_rules', 'rulename',
1415 'rulename' => $rule,
1416 'tablename' => $table,
1417 'schemaname' => $this->getCoreSchema()
1421 return $exists === $rule;
1424 function constraintExists( $table, $constraint ) {
1425 $sql = sprintf( "SELECT 1 FROM information_schema.table_constraints " .
1426 "WHERE constraint_schema = %s AND table_name = %s AND constraint_name = %s",
1427 $this->addQuotes( $this->getCoreSchema() ),
1428 $this->addQuotes( $table ),
1429 $this->addQuotes( $constraint )
1431 $res = $this->query( $sql );
1435 $rows = $res->numRows();
1441 * Query whether a given schema exists. Returns true if it does, false if it doesn't.
1442 * @param string $schema
1445 function schemaExists( $schema ) {
1446 $exists = $this->selectField( '"pg_catalog"."pg_namespace"', 1,
1447 array( 'nspname' => $schema ), __METHOD__ );
1449 return (bool)$exists;
1453 * Returns true if a given role (i.e. user) exists, false otherwise.
1454 * @param string $roleName
1457 function roleExists( $roleName ) {
1458 $exists = $this->selectField( '"pg_catalog"."pg_roles"', 1,
1459 array( 'rolname' => $roleName ), __METHOD__ );
1461 return (bool)$exists;
1464 function fieldInfo( $table, $field ) {
1465 return PostgresField::fromText( $this, $table, $field );
1469 * pg_field_type() wrapper
1470 * @param ResultWrapper|resource $res ResultWrapper or PostgreSQL query result resource
1471 * @param int $index Field number, starting from 0
1474 function fieldType( $res, $index ) {
1475 if ( $res instanceof ResultWrapper ) {
1476 $res = $res->result;
1479 return pg_field_type( $res, $index );
1486 function encodeBlob( $b ) {
1487 return new Blob( pg_escape_bytea( $this->mConn, $b ) );
1490 function decodeBlob( $b ) {
1491 if ( $b instanceof Blob ) {
1495 return pg_unescape_bytea( $b );
1498 function strencode( $s ) { # Should not be called by us
1499 return pg_escape_string( $this->mConn, $s );
1503 * @param null|bool|Blob $s
1504 * @return int|string
1506 function addQuotes( $s ) {
1507 if ( is_null( $s ) ) {
1509 } elseif ( is_bool( $s ) ) {
1510 return intval( $s );
1511 } elseif ( $s instanceof Blob ) {
1512 return "'" . $s->fetch( $s ) . "'";
1515 return "'" . pg_escape_string( $this->mConn, $s ) . "'";
1519 * Postgres specific version of replaceVars.
1520 * Calls the parent version in Database.php
1522 * @param string $ins SQL string, read from a stream (usually tables.sql)
1523 * @return string SQL string
1525 protected function replaceVars( $ins ) {
1526 $ins = parent::replaceVars( $ins );
1528 if ( $this->numericVersion >= 8.3 ) {
1529 // Thanks for not providing backwards-compatibility, 8.3
1530 $ins = preg_replace( "/to_tsvector\s*\(\s*'default'\s*,/", 'to_tsvector(', $ins );
1533 if ( $this->numericVersion <= 8.1 ) { // Our minimum version
1534 $ins = str_replace( 'USING gin', 'USING gist', $ins );
1541 * Various select options
1543 * @param array $options an associative array of options to be turned into
1544 * an SQL query, valid keys are listed in the function.
1547 function makeSelectOptions( $options ) {
1548 $preLimitTail = $postLimitTail = '';
1549 $startOpts = $useIndex = '';
1551 $noKeyOptions = array();
1552 foreach ( $options as $key => $option ) {
1553 if ( is_numeric( $key ) ) {
1554 $noKeyOptions[$option] = true;
1558 $preLimitTail .= $this->makeGroupByWithHaving( $options );
1560 $preLimitTail .= $this->makeOrderBy( $options );
1562 //if ( isset( $options['LIMIT'] ) ) {
1563 // $tailOpts .= $this->limitResult( '', $options['LIMIT'],
1564 // isset( $options['OFFSET'] ) ? $options['OFFSET']
1568 if ( isset( $options['FOR UPDATE'] ) ) {
1569 $postLimitTail .= ' FOR UPDATE OF ' .
1570 implode( ', ', array_map( array( &$this, 'tableName' ), $options['FOR UPDATE'] ) );
1571 } elseif ( isset( $noKeyOptions['FOR UPDATE'] ) ) {
1572 $postLimitTail .= ' FOR UPDATE';
1575 if ( isset( $noKeyOptions['DISTINCT'] ) || isset( $noKeyOptions['DISTINCTROW'] ) ) {
1576 $startOpts .= 'DISTINCT';
1579 return array( $startOpts, $useIndex, $preLimitTail, $postLimitTail );
1582 function getDBname() {
1583 return $this->mDBname;
1586 function getServer() {
1587 return $this->mServer;
1590 function buildConcat( $stringList ) {
1591 return implode( ' || ', $stringList );
1594 public function buildGroupConcatField(
1595 $delimiter, $table, $field, $conds = '', $options = array(), $join_conds = array()
1597 $fld = "array_to_string(array_agg($field)," . $this->addQuotes( $delimiter ) . ')';
1599 return '(' . $this->selectSQLText( $table, $fld, $conds, null, array(), $join_conds ) . ')';
1602 public function getSearchEngine() {
1603 return 'SearchPostgres';
1606 public function streamStatementEnd( &$sql, &$newLine ) {
1607 # Allow dollar quoting for function declarations
1608 if ( substr( $newLine, 0, 4 ) == '$mw$' ) {
1609 if ( $this->delimiter ) {
1610 $this->delimiter = false;
1612 $this->delimiter = ';';
1616 return parent::streamStatementEnd( $sql, $newLine );
1620 * Check to see if a named lock is available. This is non-blocking.
1621 * See http://www.postgresql.org/docs/8.2/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
1623 * @param string $lockName Name of lock to poll
1624 * @param string $method Name of method calling us
1628 public function lockIsFree( $lockName, $method ) {
1629 $key = $this->addQuotes( $this->bigintFromLockName( $lockName ) );
1630 $result = $this->query( "SELECT (CASE(pg_try_advisory_lock($key))
1631 WHEN 'f' THEN 'f' ELSE pg_advisory_unlock($key) END) AS lockstatus", $method );
1632 $row = $this->fetchObject( $result );
1634 return ( $row->lockstatus === 't' );
1638 * See http://www.postgresql.org/docs/8.2/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
1639 * @param string $lockName
1640 * @param string $method
1641 * @param int $timeout
1644 public function lock( $lockName, $method, $timeout = 5 ) {
1645 $key = $this->addQuotes( $this->bigintFromLockName( $lockName ) );
1646 for ( $attempts = 1; $attempts <= $timeout; ++$attempts ) {
1647 $result = $this->query(
1648 "SELECT pg_try_advisory_lock($key) AS lockstatus", $method );
1649 $row = $this->fetchObject( $result );
1650 if ( $row->lockstatus === 't' ) {
1656 wfDebug( __METHOD__ . " failed to acquire lock\n" );
1662 * See http://www.postgresql.org/docs/8.2/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKSFROM
1663 * PG DOCS: http://www.postgresql.org/docs/8.2/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
1664 * @param string $lockName
1665 * @param string $method
1668 public function unlock( $lockName, $method ) {
1669 $key = $this->addQuotes( $this->bigintFromLockName( $lockName ) );
1670 $result = $this->query( "SELECT pg_advisory_unlock($key) as lockstatus", $method );
1671 $row = $this->fetchObject( $result );
1673 return ( $row->lockstatus === 't' );
1677 * @param string $lockName
1678 * @return string Integer
1680 private function bigintFromLockName( $lockName ) {
1681 return wfBaseConvert( substr( sha1( $lockName ), 0, 15 ), 16, 10 );
1683 } // end DatabasePostgres class