56 throw new InvalidArgumentException(
'Empty list of tables to clone' );
78 foreach ( $this->tablesToClone as $tbl ) {
82 throw new RuntimeException(
"Cannot clone shared table $tbl." );
84 # Clean up from previous aborted run. So that table escaping
85 # works correctly across DB engines, we need to change the pre-
86 # fix back and forth so tableName() works right.
88 $this->db->tablePrefix( $this->oldTablePrefix );
89 $oldTableName = $this->db->tableName( $tbl,
'raw' );
91 $this->db->tablePrefix( $this->newTablePrefix );
92 $newTableName = $this->db->tableName( $tbl,
'raw' );
96 if ( $this->dropCurrentTables ) {
97 if ( $oldTableName === $newTableName ) {
99 throw new LogicException(
"Not dropping new table, as '$newTableName'"
100 .
" is name of both the old and the new table." );
102 $this->db->dropTable( $tbl, __METHOD__ );
103 wfDebug( __METHOD__ .
" dropping {$newTableName}\n" );
108 wfDebug( __METHOD__ .
" duplicating $oldTableName to $newTableName\n" );
109 $this->db->duplicateTableStructure(
118 public function destroy( $dropTables =
false ) {
120 $this->db->tablePrefix( $this->newTablePrefix );
121 foreach ( $this->tablesToClone as $tbl ) {
122 $this->db->dropTable( $tbl );
125 $this->db->tablePrefix( $this->oldTablePrefix );
137 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
138 $lbFactory->setLocalDomainPrefix( $prefix );
$wgDBprefix
Current wiki database 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.