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
INLINESTATS after SORT, see initial bug report here. This currently is nicely handled with an error message Unbounded sort not supported yet [SORT gb DESC] please add a limit
This query used to fail: FROM kibana_sample_data_logs | EVAL timestamp=DATE_TRUNC(5 minute, @timestamp) | INLINESTATS results = count(*) by timestamp | keep results, timestamp Let's add a test and potentially fix it.
Fixed in: ESQL: Allow pruning columns added by InlineJoin #131204
ESQL: INLINESTATS implementation with multiple LogicalPlan updates #128917
Unbounded sort not supported yet [SORT gb DESC] please add a limitTests added here
Reenabled in ESQL: Reenable INLINESTATS tests #132200
FROM kibana_sample_data_logs | EVAL timestamp=DATE_TRUNC(5 minute, @timestamp) | INLINESTATS results = count(*) by timestamp | keep results, timestampLet's add a test and potentially fix it.Fixed in: ESQL: Allow pruning columns added by InlineJoin #131204
FROM idx | EVAL ip = to_ip(host), x = to_string(host), y = to_string(host) | INLINESTATS max(id)and re-enable the corresponding telemetry test case muted here.Reenabled in ESQL: Reenable INLINESTATS telemetry test #132197