File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
lib/internal/Magento/Framework/DB/Adapter/Pdo Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -2854,6 +2854,7 @@ public function endSetup()
2854
2854
* - array("gteq" => $greaterOrEqualValue)
2855
2855
* - array("lteq" => $lessOrEqualValue)
2856
2856
* - array("finset" => $valueInSet)
2857
+ * - array("nfinset" => $valueNotInSet)
2857
2858
* - array("regexp" => $regularExpression)
2858
2859
* - array("seq" => $stringValue)
2859
2860
* - array("sneq" => $stringValue)
@@ -2883,6 +2884,7 @@ public function prepareSqlCondition($fieldName, $condition)
2883
2884
'gteq ' => "{{fieldName}} >= ? " ,
2884
2885
'lteq ' => "{{fieldName}} <= ? " ,
2885
2886
'finset ' => "FIND_IN_SET(?, {{fieldName}}) " ,
2887
+ 'nfinset ' => "NOT FIND_IN_SET(?, {{fieldName}}) " ,
2886
2888
'regexp ' => "{{fieldName}} REGEXP ? " ,
2887
2889
'from ' => "{{fieldName}} >= ? " ,
2888
2890
'to ' => "{{fieldName}} <= ? " ,
You can’t perform that action at this time.
0 commit comments