Fixing a variable name, and a PHP warning.
[mediawiki.git] / maintenance / rebuildtextindex.php
blob47d297a9bb28d8857b2e25f4fa3d16ca4d82cabe
1 <?php
2 /**
3 * Rebuild search index table from scratch. This takes several
4 * hours, depending on the database size and server configuration.
6 * This is only for MySQL (see bug 9905). For postgres we can probably
7 * use SearchPostgres::update($pageid);
9 * @todo document
10 * @addtogroup Maintenance
13 /** */
14 require_once( "commandLine.inc" );
15 require_once( "rebuildtextindex.inc" );
17 $database = wfGetDB( DB_MASTER );
18 if( !$database instanceof DatabaseMysql ) {
19 print "This script is only for MySQL.\n";
20 exit();
23 $wgTitle = Title::newFromText( "Rebuild text index script" );
25 dropTextIndex( $database );
26 rebuildTextIndex( $database );
27 createTextIndex( $database );
29 print "Done.\n";
30 exit();