We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38dd0ed commit 65819d2Copy full SHA for 65819d2
lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php
@@ -2789,6 +2789,9 @@ public function prepareSqlCondition($fieldName, $condition)
2789
if (($key == 'seq') || ($key == 'sneq')) {
2790
$key = $this->_transformStringSqlCondition($key, $value);
2791
}
2792
+ if (($key == 'in' || $key == 'nin') && is_string($value)) {
2793
+ $value = explode(',', $value);
2794
+ }
2795
$query = $this->_prepareQuotedSqlCondition($conditionKeyMap[$key], $value, $fieldName);
2796
} else {
2797
$queries = [];
0 commit comments