Commit 869d96ee by Qiang Xue

Fixed test break.

parent ff83bd1b
...@@ -190,7 +190,7 @@ trait QueryTrait ...@@ -190,7 +190,7 @@ trait QueryTrait
* *
* @param array $condition original condition * @param array $condition original condition
* @return array condition with [[isParameterNotEmpty|empty parameters]] removed. * @return array condition with [[isParameterNotEmpty|empty parameters]] removed.
* @throws NotSupportedException if the condition format is not supported * @throws NotSupportedException if the condition operator is not supported
*/ */
protected function filterCondition($condition) protected function filterCondition($condition)
{ {
...@@ -244,7 +244,7 @@ trait QueryTrait ...@@ -244,7 +244,7 @@ trait QueryTrait
// hash format: 'column1' => 'value1', 'column2' => 'value2', ... // hash format: 'column1' => 'value1', 'column2' => 'value2', ...
return array_filter($condition, [$this, 'isParameterNotEmpty']); return array_filter($condition, [$this, 'isParameterNotEmpty']);
} else { } else {
throw new NotSupportedException("filterWhere() does not support plain string conditions use where() instead."); return $condition;
} }
return $condition; return $condition;
} }
......
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