From ed85ae335532a671b873eb4e6623f3dca5612a47 Mon Sep 17 00:00:00 2001 From: Johannes 'Haensel' Bauer Date: Fri, 6 Dec 2013 17:17:29 +0100 Subject: [PATCH] added execute() command after checkIntegrity --- framework/yii/test/DbFixtureManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/yii/test/DbFixtureManager.php b/framework/yii/test/DbFixtureManager.php index 23d25d442c..931e81ed46 100644 --- a/framework/yii/test/DbFixtureManager.php +++ b/framework/yii/test/DbFixtureManager.php @@ -214,7 +214,7 @@ class DbFixtureManager extends Component public function checkIntegrity($check) { foreach ($this->schemas as $schema) { - $this->db->createCommand()->checkIntegrity($check, $schema); + $this->db->createCommand()->checkIntegrity($check, $schema)->execute(); } } }