Index: trunk/phase3/includes/search/SearchOracle.php |
— | — | @@ -254,9 +254,9 @@ |
255 | 255 | // ALTER SESSION SET CURRENT_SCHEMA = ... |
256 | 256 | // was used. |
257 | 257 | $dbw->query( "CALL ctx_ddl.sync_index(" . |
258 | | - $dbw->addQuotes( $dbw->getDBname() . '.'.$wgDBprefix.'si_text_idx' ) . ")" ); |
| 258 | + $dbw->addQuotes( $dbw->getDBname() . '.' . trim( $dbw->tableName( 'si_text_idx' ), '"' ) ) . ")" ); |
259 | 259 | $dbw->query( "CALL ctx_ddl.sync_index(" . |
260 | | - $dbw->addQuotes( $dbw->getDBname() . '.'.$wgDBprefix.'si_title_idx' ) . ")" ); |
| 260 | + $dbw->addQuotes( $dbw->getDBname() . '.' . trim( $dbw->tableName( 'si_title_idx' ), '"' ) ) . ")" ); |
261 | 261 | } |
262 | 262 | |
263 | 263 | /** |