Postgres updater didn't output a message for some updates it ran
authorMax Semenik <maxsem@users.mediawiki.org>
Tue, 27 Dec 2011 11:26:24 +0000 (11:26 +0000)
committerMax Semenik <maxsem@users.mediawiki.org>
Tue, 27 Dec 2011 11:26:24 +0000 (11:26 +0000)
includes/installer/PostgresUpdater.php

index f8f02dd..7381bfd 100644 (file)
@@ -628,12 +628,14 @@ END;
        protected function tsearchFixes() {
                # Tweak the page_title tsearch2 trigger to filter out slashes
                # This is create or replace, so harmless to call if not needed
+               $this->output( "Refreshing ts2_page_title()...\n" );
                $this->applyPatch( 'patch-ts2pagetitle.sql' );
 
                # If the server is 8.3 or higher, rewrite the tsearch2 triggers
                # in case they have the old 'default' versions
                # Gather version numbers in case we need them
                if ( $this->db->getServerVersion() >= 8.3 ) {
+                       $this->output( "Rewriting tsearch2 triggers...\n" );
                        $this->applyPatch( 'patch-tsearch2funcs.sql' );
                }
        }