Skip to content

Commit

Permalink
Use unique primary keys
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Apr 29, 2024
1 parent e40875d commit 9da1929
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/org/polypheny/jdbc/StatementTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ void testMultipleStatements2() throws SQLException {
s1.execute( "INSERT INTO t(id, a) VALUES (1, 4)" );
s1.execute( "INSERT INTO t(id, a) VALUES (2, 4)" );
try ( Statement s2 = con.createStatement() ) {
s2.execute( "INSERT INTO t(id, a) VALUES (5, 5)" );
s2.execute( "INSERT INTO t(id, a) VALUES (6, 6)" );
s2.execute( "INSERT INTO t(id, a) VALUES (3, 5)" );
s2.execute( "INSERT INTO t(id, a) VALUES (4, 6)" );
}
s1.execute( "INSERT INTO t(id, a) VALUES (1, 7)" );
s1.execute( "INSERT INTO t(id, a) VALUES (2, 7)" );
s1.execute( "INSERT INTO t(id, a) VALUES (5, 7)" );
s1.execute( "INSERT INTO t(id, a) VALUES (6, 7)" );
con.close();
}
}
Expand Down

0 comments on commit 9da1929

Please sign in to comment.