From cba7fceb53c4ef1093b8ae10c19111071b72b1fd Mon Sep 17 00:00:00 2001 From: Nhat Nguyen Date: Mon, 13 Aug 2018 15:05:42 -0400 Subject: [PATCH] AwaitsFix case-functions.sql-spec Relates #32589 --- .../org/elasticsearch/xpack/qa/sql/jdbc/SqlSpecTestCase.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/jdbc/SqlSpecTestCase.java b/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/jdbc/SqlSpecTestCase.java index 38b04e4ad65..d61b4b9a946 100644 --- a/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/jdbc/SqlSpecTestCase.java +++ b/x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/jdbc/SqlSpecTestCase.java @@ -37,7 +37,8 @@ public abstract class SqlSpecTestCase extends SpecBaseIntegrationTestCase { tests.addAll(readScriptSpec("/agg.sql-spec", parser)); tests.addAll(readScriptSpec("/arithmetic.sql-spec", parser)); tests.addAll(readScriptSpec("/string-functions.sql-spec", parser)); - tests.addAll(readScriptSpec("/case-functions.sql-spec", parser)); + // AwaitsFix: https://github.com/elastic/elasticsearch/issues/32589 + // tests.addAll(readScriptSpec("/case-functions.sql-spec", parser)); return tests; }