SQL: eliminate disabled tests

This commit is contained in:
Costin Leau 2018-05-15 22:49:05 +03:00
parent 09329eb84f
commit 03dd2ab499
1 changed files with 0 additions and 14 deletions

View File

@ -49,18 +49,4 @@ public class VerifierErrorMessagesTests extends ESTestCase {
assertEquals("1:32: Currently, only a single expression can be used with GROUP BY; please select one of [bool, keyword]",
verify("SELECT bool FROM test GROUP BY bool, keyword"));
}
//
// TODO potential improvements
//
// regarding resolution
// public void testGroupByOrderByKeyAlias() {
// assertEquals("1:8: Cannot use field [unsupported] type [ip_range] as is unsupported",
// verify("SELECT int i FROM test GROUP BY int ORDER BY i"));
// }
//
// public void testGroupByAlias() {
// assertEquals("1:8: Cannot use field [unsupported] type [ip_range] as is unsupported",
// verify("SELECT int i FROM test GROUP BY i ORDER BY int"));
// }
}