From: Aaron Schulz Date: Tue, 19 Mar 2019 15:59:19 +0000 (-0700) Subject: rdbms: make LBFactory::setLocalDomainPrefix preserve the schema X-Git-Tag: 1.34.0-rc.0~2417^2 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=7a1330dc056692b9eca7b104645fa054adb58f02;p=lhc%2Fweb%2Fwiklou.git rdbms: make LBFactory::setLocalDomainPrefix preserve the schema This avoids possible tests failures due to mismatched DB domain Change-Id: Ic276d4f4567ce76ab395b6f7215242e84321f3bd --- 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 );