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