r113534 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r113533‎ | r113534 | r113535 >
Date:22:29, 9 March 2012
Author:saper
Status:ok
Tags:
Comment:
Fix PostgreSQL updater broken by r113487
Modified paths:
  • /trunk/phase3/includes/db/DatabasePostgres.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/db/DatabasePostgres.php
@@ -929,7 +929,7 @@
930930 wfDebug("Schema \"" . $desired_schema . "\" already in the search path\n");
931931 } else {
932932 /**
933 - * Apped our schema (e.g. 'mediawiki') in front
 933+ * Append our schema (e.g. 'mediawiki') in front
934934 * of the search path
935935 * Fixes bug 15816
936936 */
@@ -937,6 +937,7 @@
938938 array_unshift( $search_path,
939939 $this->addIdentifierQuotes( $desired_schema ));
940940 $this->setSearchPath( $search_path );
 941+ $this->mCoreSchema = $desired_schema;
941942 wfDebug("Schema \"" . $desired_schema . "\" added to the search path\n");
942943 }
943944 } else {

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r113487Handle PostgreSQL transaction errors and improve schema detection...saper17:24, 9 March 2012

Status & tagging log