75 foreach ( $this->tablesToClone as $tbl ) {
79 throw new RuntimeException(
"Cannot clone shared table $tbl." );
81 # Clean up from previous aborted run. So that table escaping
82 # works correctly across DB engines, we need to change the pre-
83 # fix back and forth so tableName() works right.
86 $oldTableName = $this->db->tableName( $tbl,
'raw' );
89 $newTableName = $this->db->tableName( $tbl,
'raw' );
93 if ( $this->dropCurrentTables
94 && !in_array( $this->db->getType(), [
'oracle' ] )
96 if ( $oldTableName === $newTableName ) {
98 throw new LogicException(
"Not dropping new table, as '$newTableName'"
99 .
" is name of both the old and the new table." );
101 $this->db->dropTable( $tbl, __METHOD__ );
102 wfDebug( __METHOD__ .
" dropping {$newTableName}\n" );
107 wfDebug( __METHOD__ .
" duplicating $oldTableName to $newTableName\n" );
108 $this->db->duplicateTableStructure(
117 public function destroy( $dropTables =
false ) {
120 foreach ( $this->tablesToClone as $tbl ) {
121 $this->db->dropTable( $tbl );
136 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
137 $lbFactory->setDomainPrefix( $prefix );
$wgDBprefix
Table name prefix.
$wgSharedDB
Shared database for multiple wikis.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
bool $useTemporaryTables
Whether to use temporary tables or not.
bool $dropCurrentTables
Should we DROP tables containing the new names?
cloneTableStructure()
Clone the table structure.
IMaintainableDatabase $db
static changePrefix( $prefix)
Change the table prefix on all open DB connections/.
string $newTablePrefix
Table prefix for cloning.
__construct(IMaintainableDatabase $db, array $tablesToClone, $newTablePrefix, $oldTablePrefix=null, $dropCurrentTables=true)
destroy( $dropTables=false)
Change the prefix back to the original.
array $tablesToClone
List of tables to be cloned.
useTemporaryTables( $u=true)
Set whether to use temporary tables or not.
string $oldTablePrefix
Current table prefix.
Advanced database interface for IDatabase handles that include maintenance methods.