We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f379a commit ff2d510Copy full SHA for ff2d510
core/src/main/java/com/orientechnologies/orient/core/sql/parser/OEqualsCompareOperator.java
@@ -164,6 +164,11 @@ else if (iRight instanceof OResult) {
164
return couple[0].equals(couple[1]);
165
}
166
167
+ // COLLECTION CONTAINS
168
+ if (OMultiValue.isMultiValue(iLeft) && !OMultiValue.isMultiValue(iRight)) {
169
+ return OMultiValue.contains(iLeft, iRight);
170
+ }
171
+
172
// ALL OTHER CASES
173
try {
174
final Object right = OType.convert(iRight, iLeft.getClass());
0 commit comments