MediaWiki REL1_28
CloneDatabase Class Reference
Collaboration diagram for CloneDatabase:

Public Member Functions

 __construct (Database $db, array $tablesToClone, $newTablePrefix, $oldTablePrefix='', $dropCurrentTables=true)
 Constructor.
 
 cloneTableStructure ()
 Clone the table structure.
 
 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

Database $db
 
bool $dropCurrentTables = true
 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.
 

Detailed Description

Examples
/src/tests/phpunit/MediaWikiTestCase.php.

Definition at line 28 of file CloneDatabase.php.

Constructor & Destructor Documentation

◆ __construct()

CloneDatabase::__construct ( Database  $db,
array  $tablesToClone,
  $newTablePrefix,
  $oldTablePrefix = '',
  $dropCurrentTables = true 
)

Constructor.

Parameters
Database$dbA database subclass
array$tablesToCloneAn array of tables to clone, unprefixed
string$newTablePrefixPrefix to assign to the tables
string$oldTablePrefixPrefix on current tables, if not $wgDBprefix
bool$dropCurrentTables

Definition at line 56 of file CloneDatabase.php.

References $db, $dropCurrentTables, $newTablePrefix, $oldTablePrefix, $tablesToClone, and Database\tablePrefix().

Member Function Documentation

◆ changePrefix()

static CloneDatabase::changePrefix (   $prefix)
static

Change the table prefix on all open DB connections/.

Parameters
string$prefix
Returns
void
Examples
/src/tests/phpunit/MediaWikiTestCase.php.

Definition at line 134 of file CloneDatabase.php.

References $lbFactory, $wgDBprefix, and global.

Referenced by cloneTableStructure(), destroy(), MediaWikiTestCase\setupDatabaseWithTestPrefix(), and MediaWikiTestCase\teardownTestDB().

◆ cloneTableStructure()

CloneDatabase::cloneTableStructure ( )

Clone the table structure.

Definition at line 77 of file CloneDatabase.php.

References $wgSharedDB, $wgSharedTables, as, changePrefix(), global, useTemporaryTables(), and wfDebug().

◆ destroy()

CloneDatabase::destroy (   $dropTables = false)

Change the prefix back to the original.

Parameters
bool$dropTablesOptionally drop the tables we created

Definition at line 118 of file CloneDatabase.php.

References as, and changePrefix().

◆ useTemporaryTables()

CloneDatabase::useTemporaryTables (   $u = true)

Set whether to use temporary tables or not.

Parameters
bool$uUse temporary tables when cloning the structure

Definition at line 70 of file CloneDatabase.php.

References useTemporaryTables().

Referenced by cloneTableStructure(), and useTemporaryTables().

Member Data Documentation

◆ $db

Database CloneDatabase::$db
private

Definition at line 45 of file CloneDatabase.php.

Referenced by __construct().

◆ $dropCurrentTables

bool CloneDatabase::$dropCurrentTables = true
private

Should we DROP tables containing the new names?

Definition at line 39 of file CloneDatabase.php.

Referenced by __construct().

◆ $newTablePrefix

string CloneDatabase::$newTablePrefix = ''
private

Table prefix for cloning.

Definition at line 30 of file CloneDatabase.php.

Referenced by __construct().

◆ $oldTablePrefix

string CloneDatabase::$oldTablePrefix = ''
private

Current table prefix.

Definition at line 33 of file CloneDatabase.php.

Referenced by __construct().

◆ $tablesToClone

array CloneDatabase::$tablesToClone = []
private

List of tables to be cloned.

Definition at line 36 of file CloneDatabase.php.

Referenced by __construct().

◆ $useTemporaryTables

bool CloneDatabase::$useTemporaryTables = true
private

Whether to use temporary tables or not.

Definition at line 42 of file CloneDatabase.php.


The documentation for this class was generated from the following file: