From 6badc7415684df54d6672098834359223b859507 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 7 Jul 2018 09:52:43 +0100 Subject: [PATCH] Fix ParserTestRunner DB table test prefix logic Follow-up to 6cfdbdf60 Bug: T198943 Change-Id: I3c3553f2ec6b5ca0d401712e4018c7eec4d9204d --- tests/parser/ParserTestRunner.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/parser/ParserTestRunner.php b/tests/parser/ParserTestRunner.php index 4ae5f78f9b..ceee432fb8 100644 --- a/tests/parser/ParserTestRunner.php +++ b/tests/parser/ParserTestRunner.php @@ -1264,6 +1264,7 @@ class ParserTestRunner { $this->dbClone = new CloneDatabase( $this->db, $this->listTables(), $prefix ); $this->dbClone->useTemporaryTables( $temporary ); $this->dbClone->cloneTableStructure(); + CloneDatabase::changePrefix( $prefix ); if ( $dbType == 'oracle' ) { $this->db->query( 'BEGIN FILL_WIKI_INFO; END;' ); -- 2.20.1