FIX: Compile error on EqlParserTest

This commit is contained in:
Roland Praml
2022-01-07 13:00:43 +01:00
parent 8a7a7f6739
commit 3fd746cd36
@@ -261,7 +261,7 @@ public class EqlParserTest extends BaseTestCase {
}
@Test
@ForPlatform({Platform.HANA, Platform.DB2}))
@ForPlatform({Platform.HANA, Platform.DB2})
public void where_or2_hana() {
Query<Customer> query = parse("where (name = 'Rob' or status = 'N') and smallnote is null");
@@ -271,7 +271,7 @@ public class EqlParserTest extends BaseTestCase {
}
@Test
@IgnorePlatform({Platform.HANA, Platform.DB2})) // The HANA & DB2 JDBC driver checks the field length on binding and rejects 'NEW'
@IgnorePlatform({Platform.HANA, Platform.DB2}) // The HANA & DB2 JDBC driver checks the field length on binding and rejects 'NEW'
public void test_simplifyExpressions() {
Query<Customer> query = parse("where not (name = 'Rob' and status = 'NEW')");