MediaWiki
1.28.0
|
Public Member Functions | |
__construct (Database $db, array $tablesToClone, $newTablePrefix, $oldTablePrefix= '', $dropCurrentTables=true) | |
Constructor. More... | |
cloneTableStructure () | |
Clone the table structure. More... | |
destroy ($dropTables=false) | |
Change the prefix back to the original. More... | |
useTemporaryTables ($u=true) | |
Set whether to use temporary tables or not. More... | |
Static Public Member Functions | |
static | changePrefix ($prefix) |
Change the table prefix on all open DB connections/. More... | |
Private Attributes | |
Database | $db |
bool | $dropCurrentTables = true |
Should we DROP tables containing the new names? More... | |
string | $newTablePrefix = '' |
Table prefix for cloning. More... | |
string | $oldTablePrefix = '' |
Current table prefix. More... | |
array | $tablesToClone = [] |
List of tables to be cloned. More... | |
bool | $useTemporaryTables = true |
Whether to use temporary tables or not. More... | |
Definition at line 28 of file CloneDatabase.php.
CloneDatabase::__construct | ( | Database | $db, |
array | $tablesToClone, | ||
$newTablePrefix, | |||
$oldTablePrefix = '' , |
|||
$dropCurrentTables = true |
|||
) |
Constructor.
Database | $db | A database subclass |
array | $tablesToClone | An array of tables to clone, unprefixed |
string | $newTablePrefix | Prefix to assign to the tables |
string | $oldTablePrefix | Prefix on current tables, if not $wgDBprefix |
bool | $dropCurrentTables |
Definition at line 56 of file CloneDatabase.php.
References $db, $dropCurrentTables, $newTablePrefix, and $tablesToClone.
|
static |
Change the table prefix on all open DB connections/.
string | $prefix |
Definition at line 134 of file CloneDatabase.php.
References $lbFactory, $wgDBprefix, and global.
Referenced by MediaWikiTestCase\setupDatabaseWithTestPrefix(), and MediaWikiTestCase\teardownTestDB().
CloneDatabase::cloneTableStructure | ( | ) |
Clone the table structure.
Definition at line 77 of file CloneDatabase.php.
References $wgSharedDB, $wgSharedTables, as, global, 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 118 of file CloneDatabase.php.
References as.
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.
Referenced by cloneTableStructure().
|
private |
Definition at line 45 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Should we DROP tables containing the new names?
Definition at line 39 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Table prefix for cloning.
Definition at line 30 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Current table prefix.
Definition at line 33 of file CloneDatabase.php.
|
private |
List of tables to be cloned.
Definition at line 36 of file CloneDatabase.php.
Referenced by __construct().
|
private |
Whether to use temporary tables or not.
Definition at line 42 of file CloneDatabase.php.