Skip to content

Commit

Permalink
ES|QL: Mute test for elastic#116003
Browse files Browse the repository at this point in the history
  • Loading branch information
luigidellaquila committed Oct 31, 2024
1 parent 4ee98e8 commit 3345e12
Showing 1 changed file with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,20 +128,22 @@ public static Iterable<Object[]> 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, "STATS", 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, "STATS", 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()
// ) }
);
}

Expand Down

0 comments on commit 3345e12

Please sign in to comment.