r107375 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r107374‎ | r107375 | r107376 >
Date:11:26, 27 December 2011
Author:maxsem
Status:ok
Tags:
Comment:
Postgres updater didn't output a message for some updates it ran
Modified paths:
  • /trunk/phase3/includes/installer/PostgresUpdater.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/installer/PostgresUpdater.php
@@ -628,12 +628,14 @@
629629 protected function tsearchFixes() {
630630 # Tweak the page_title tsearch2 trigger to filter out slashes
631631 # This is create or replace, so harmless to call if not needed
 632+ $this->output( "Refreshing ts2_page_title()...\n" );
632633 $this->applyPatch( 'patch-ts2pagetitle.sql' );
633634
634635 # If the server is 8.3 or higher, rewrite the tsearch2 triggers
635636 # in case they have the old 'default' versions
636637 # Gather version numbers in case we need them
637638 if ( $this->db->getServerVersion() >= 8.3 ) {
 639+ $this->output( "Rewriting tsearch2 triggers...\n" );
638640 $this->applyPatch( 'patch-tsearch2funcs.sql' );
639641 }
640642 }

Status & tagging log