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
On a log file consisting of the following example data {"a": [{"b": "c"}]}
Search will work correctly for queries like a.b: c and a.b: *, but will fail on schema matching for the query NOT a.b: *.
The expected behaviour is for schema matching to succeed on the array column "a" following by the record not being matched because an object with the key "b" exists within the array "a". This is likely caused by an interaction between the Convert To Exists pass and Schema Matching.
Bug
On a log file consisting of the following example data
{"a": [{"b": "c"}]}
Search will work correctly for queries like
a.b: c
anda.b: *
, but will fail on schema matching for the queryNOT a.b: *
.The expected behaviour is for schema matching to succeed on the array column "a" following by the record not being matched because an object with the key "b" exists within the array "a". This is likely caused by an interaction between the Convert To Exists pass and Schema Matching.
CLP version
284a558
Environment
Ubuntu focal clp image.
Reproduction steps
{"a": [{"b": "c"}]}
NOT a.b: *
The text was updated successfully, but these errors were encountered: