-
Notifications
You must be signed in to change notification settings - Fork 25.6k
Closed
Labels
:Analytics/EQLEQL queryingEQL querying>enhancementTeam:QL (Deprecated)Meta label for query languages teamMeta label for query languages team
Description
I saw a few queries flying around with field == "*" syntax. In general, I think we should direct users to direct == null or != null checking, but sometimes we see usage patterns from KQL seep in.
Under the hood field == "*" gets converted to wildcard(field, "*"), which eventually turns into an AST for "like": Like(Source(), Field("field"), "%").
I think somewhere in the optimizer to we should convert this to IsNotNull which should be more performant.
Metadata
Metadata
Assignees
Labels
:Analytics/EQLEQL queryingEQL querying>enhancementTeam:QL (Deprecated)Meta label for query languages teamMeta label for query languages team