Skip to content

Commit 681f509

Browse files
ES|QL: Mute test for #116003 (#116005)
1 parent 4d2a598 commit 681f509

File tree

1 file changed

+15
-13
lines changed
  • x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action

1 file changed

+15
-13
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/TelemetryIT.java

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -128,20 +128,22 @@ public static Iterable<Object[]> parameters() {
128128
: Collections.emptyMap(),
129129
Build.current().isSnapshot() ? Map.ofEntries(Map.entry("MAX", 1)) : Collections.emptyMap(),
130130
Build.current().isSnapshot()
131-
) },
132-
new Object[] {
133-
new Test(
134-
"""
135-
FROM idx
136-
| EVAL ip = to_ip(host), x = to_string(host), y = to_string(host)
137-
| INLINESTATS max(id)
138-
""",
139-
Build.current().isSnapshot() ? Map.of("FROM", 1, "EVAL", 1, "INLINESTATS", 1, "STATS", 1) : Collections.emptyMap(),
140-
Build.current().isSnapshot()
141-
? Map.ofEntries(Map.entry("MAX", 1), Map.entry("TO_IP", 1), Map.entry("TO_STRING", 2))
142-
: Collections.emptyMap(),
143-
Build.current().isSnapshot()
144131
) }
132+
// awaits fix for https://github.com/elastic/elasticsearch/issues/116003
133+
// ,
134+
// new Object[] {
135+
// new Test(
136+
// """
137+
// FROM idx
138+
// | EVAL ip = to_ip(host), x = to_string(host), y = to_string(host)
139+
// | INLINESTATS max(id)
140+
// """,
141+
// Build.current().isSnapshot() ? Map.of("FROM", 1, "EVAL", 1, "INLINESTATS", 1, "STATS", 1) : Collections.emptyMap(),
142+
// Build.current().isSnapshot()
143+
// ? Map.ofEntries(Map.entry("MAX", 1), Map.entry("TO_IP", 1), Map.entry("TO_STRING", 2))
144+
// : Collections.emptyMap(),
145+
// Build.current().isSnapshot()
146+
// ) }
145147
);
146148
}
147149

0 commit comments

Comments
 (0)