You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we have some data Map<String, Object> check = new HashMap<String, Object>(); check.put("item", 3); check.put("null_item", null);
and we use this filter filter(where("not_existent_item").nin(3)).apply(createPredicateContext(check))
I expect to get false because no such element exists.
Instead the filter returns true.
If this is expected behavior, is it possible to add strict mode for filter expression matching so that if the element in the expression is not present the evaluator throws an exception?
The text was updated successfully, but these errors were encountered:
If we have some data
Map<String, Object> check = new HashMap<String, Object>(); check.put("item", 3); check.put("null_item", null);
and we use this filter
filter(where("not_existent_item").nin(3)).apply(createPredicateContext(check))
I expect to get false because no such element exists.
Instead the filter returns true.
If this is expected behavior, is it possible to add strict mode for filter expression matching so that if the element in the expression is not present the evaluator throws an exception?
The text was updated successfully, but these errors were encountered: