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 fe9cef6 commit e116dd0Copy full SHA for e116dd0
lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php
@@ -2976,6 +2976,9 @@ public function prepareSqlCondition($fieldName, $condition)
2976
if (($key == 'in' || $key == 'nin') && is_string($value)) {
2977
$value = explode(',', $value);
2978
}
2979
+ if (($key == 'finset' || $key == 'nfinset') && is_array($value)) {
2980
+ $value = implode(',', $value);
2981
+ }
2982
$query = $this->_prepareQuotedSqlCondition($conditionKeyMap[$key], $value, $fieldName);
2983
} else {
2984
$queries = [];
0 commit comments