diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/TelemetryIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/TelemetryIT.java index a79bf06faed2b..933360a19be18 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/TelemetryIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/TelemetryIT.java @@ -161,22 +161,20 @@ public static Iterable parameters() { : Collections.emptyMap(), Build.current().isSnapshot() ? Map.ofEntries(Map.entry("MAX", 1)) : Collections.emptyMap(), Build.current().isSnapshot() + ) }, + new Object[] { + new Test( + """ + FROM idx + | EVAL ip = TO_IP(host), x = TO_STRING(host), y = TO_STRING(host) + | INLINESTATS MAX(id) + """, + Build.current().isSnapshot() ? Map.of("FROM", 1, "EVAL", 1, "INLINESTATS", 1) : Collections.emptyMap(), + Build.current().isSnapshot() + ? Map.ofEntries(Map.entry("MAX", 1), Map.entry("TO_IP", 1), Map.entry("TO_STRING", 2)) + : Collections.emptyMap(), + Build.current().isSnapshot() ) } - // awaits fix for https://github.com/elastic/elasticsearch/issues/116003 - // , - // new Object[] { - // new Test( - // """ - // FROM idx - // | EVAL ip = to_ip(host), x = to_string(host), y = to_string(host) - // | INLINESTATS max(id) - // """, - // Build.current().isSnapshot() ? Map.of("FROM", 1, "EVAL", 1, "INLINESTATS", 1) : Collections.emptyMap(), - // Build.current().isSnapshot() - // ? Map.ofEntries(Map.entry("MAX", 1), Map.entry("TO_IP", 1), Map.entry("TO_STRING", 2)) - // : Collections.emptyMap(), - // Build.current().isSnapshot() - // ) } ); }