From 7a1330dc056692b9eca7b104645fa054adb58f02 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 19 Mar 2019 08:59:19 -0700 Subject: [PATCH] rdbms: make LBFactory::setLocalDomainPrefix preserve the schema This avoids possible tests failures due to mismatched DB domain Change-Id: Ic276d4f4567ce76ab395b6f7215242e84321f3bd --- includes/libs/rdbms/lbfactory/LBFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/libs/rdbms/lbfactory/LBFactory.php b/includes/libs/rdbms/lbfactory/LBFactory.php index 9ec1ce125b..007ac20662 100644 --- a/includes/libs/rdbms/lbfactory/LBFactory.php +++ b/includes/libs/rdbms/lbfactory/LBFactory.php @@ -634,7 +634,7 @@ abstract class LBFactory implements ILBFactory { public function setLocalDomainPrefix( $prefix ) { $this->localDomain = new DatabaseDomain( $this->localDomain->getDatabase(), - null, + $this->localDomain->getSchema(), $prefix ); -- 2.20.1