Alexey Temnikov
Alexey Temnikov
## What is the bug? When querying a non-existent nested field within a struct/object type, users receive a cryptic error message: ``` "Unsupported conversion for Relational Data type: BINARY" ```...
## Query Information **PPL Command/Query:** ```ppl source=test-nested-agg | stats COUNT() by request.path source=test-nested-agg | top request.path ``` **Expected Result:** Aggregation operations should return grouped counts by the nested field values,...
## Query Information **PPL Command/Query:** ```ppl # This works - returns 3 results with computed NameLen field source=test-nested-eval-filter | eval NameLen=LENGTH(items.name) | fields id, items.name, NameLen # This fails -...