Commit 49081f05 by Qiang Xue

Fixes test break.

parent 5cbd5722
...@@ -99,7 +99,9 @@ abstract class Schema extends Object ...@@ -99,7 +99,9 @@ abstract class Schema extends Object
if ($refresh || ($table = $cache->get($key)) === false) { if ($refresh || ($table = $cache->get($key)) === false) {
$table = $this->loadTableSchema($realName); $table = $this->loadTableSchema($realName);
if ($table !== null) { if ($table !== null) {
$cache->set($key, $table, $db->schemaCacheDuration, new GroupDependency($this->getCacheGroup())); $cache->set($key, $table, $db->schemaCacheDuration, new GroupDependency([
'group' => $this->getCacheGroup(),
]));
} }
} }
return $this->_tables[$name] = $table; return $this->_tables[$name] = $table;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment