AwaitsFix case-functions.sql-spec

Relates #32589
This commit is contained in:
Nhat Nguyen 2018-08-13 15:05:42 -04:00
parent 06758f579c
commit cba7fceb53
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}