MediaWiki REL1_37
|
Public Member Functions | |
__construct (IMaintainableDatabase $db, array $tablesToClone, $newTablePrefix, $oldTablePrefix=null, $dropCurrentTables=true) | |
cloneTableStructure () | |
destroy ( $dropTables=false) | |
Change the prefix back to the original. | |
useTemporaryTables ( $u=true) | |
Set whether to use temporary tables or not. | |
Static Public Member Functions | |
static | changePrefix ( $prefix) |
Change the table prefix on all open DB connections. | |
Private Attributes | |
IMaintainableDatabase | $db |
bool | $dropCurrentTables |
Should we DROP tables containing the new names? | |
string | $newTablePrefix |
Table prefix for cloning. | |
string | $oldTablePrefix |
Current table prefix. | |
array | $tablesToClone |
List of tables to be cloned. | |
bool | $useTemporaryTables = true |
Whether to use temporary tables or not. | |
Definition at line 27 of file CloneDatabase.php.
CloneDatabase::__construct | ( | IMaintainableDatabase | $db, |
array | $tablesToClone, | ||
$newTablePrefix, | |||
$oldTablePrefix = null , |
|||
$dropCurrentTables = true |
|||
) |
IMaintainableDatabase | $db | A database subclass |
array | $tablesToClone | An array of tables to clone, unprefixed |
string | $newTablePrefix | Prefix to assign to the tables |
string | null | $oldTablePrefix | Prefix on current tables, if not $wgDBprefix |
bool | $dropCurrentTables |
Definition at line 53 of file CloneDatabase.php.
References $db, $dropCurrentTables, $newTablePrefix, $oldTablePrefix, $tablesToClone, and Wikimedia\Rdbms\IDatabase\tablePrefix().
|
static |
Change the table prefix on all open DB connections.
string | $prefix |
Definition at line 132 of file CloneDatabase.php.
References $wgDBname, $wgDBprefix, and Wikimedia\Rdbms\ILoadBalancer\setDomainAliases().
CloneDatabase::cloneTableStructure | ( | ) |
Definition at line 74 of file CloneDatabase.php.
References $wgSharedDB, $wgSharedTables, useTemporaryTables(), and wfDebug().
CloneDatabase::destroy | ( | $dropTables = false | ) |
Change the prefix back to the original.
bool | $dropTables | Optionally drop the tables we created |
Definition at line 116 of file CloneDatabase.php.
CloneDatabase::useTemporaryTables | ( | $u = true | ) |
Set whether to use temporary tables or not.
bool | $u | Use temporary tables when cloning the structure |
Definition at line 70 of file CloneDatabase.php.
References useTemporaryTables().
Referenced by cloneTableStructure(), and useTemporaryTables().
|
private |
Definition at line 44 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Should we DROP tables containing the new names?
Definition at line 38 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Table prefix for cloning.
Definition at line 29 of file CloneDatabase.php.
Referenced by __construct().
|
private |
|
private |
List of tables to be cloned.
Definition at line 35 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Whether to use temporary tables or not.
Definition at line 41 of file CloneDatabase.php.