Skip to content

Commit

Permalink
FIX; more compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rPraml committed Jan 7, 2022
1 parent 6236980 commit 06dd70e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public void where_or1() {
}

@Test
@ForPlatform({Platform.HANA, Platform.DB2}))
@ForPlatform({Platform.HANA, Platform.DB2})
public void where_or1_hana() {

Query<Customer> query = parse("where name = 'Rob' or (status = 'N' and smallnote is null)");
Expand All @@ -251,7 +251,7 @@ public void where_or1_hana() {
}

@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 where_or2() {

Query<Customer> query = parse("where (name = 'Rob' or status = 'NEW') and smallnote is null");
Expand Down

0 comments on commit 06dd70e

Please sign in to comment.