Index: trunk/phase3/includes/installer/PostgresUpdater.php |
— | — | @@ -628,12 +628,14 @@ |
629 | 629 | protected function tsearchFixes() { |
630 | 630 | # Tweak the page_title tsearch2 trigger to filter out slashes |
631 | 631 | # This is create or replace, so harmless to call if not needed |
| 632 | + $this->output( "Refreshing ts2_page_title()...\n" ); |
632 | 633 | $this->applyPatch( 'patch-ts2pagetitle.sql' ); |
633 | 634 | |
634 | 635 | # If the server is 8.3 or higher, rewrite the tsearch2 triggers |
635 | 636 | # in case they have the old 'default' versions |
636 | 637 | # Gather version numbers in case we need them |
637 | 638 | if ( $this->db->getServerVersion() >= 8.3 ) { |
| 639 | + $this->output( "Rewriting tsearch2 triggers...\n" ); |
638 | 640 | $this->applyPatch( 'patch-tsearch2funcs.sql' ); |
639 | 641 | } |
640 | 642 | } |