Skip to content

Commit

Permalink
[misc] code style correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Nov 24, 2023
1 parent 1c65b49 commit da715da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/java/org/mariadb/jdbc/integration/BatchTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public void batchClear() throws SQLException {
Statement stmt = sharedConn.createStatement();
stmt.execute("DROP TABLE IF EXISTS batchClear");
stmt.execute("CREATE TABLE batchClear(c0 VARCHAR(16))");
try (PreparedStatement prep = sharedConn.prepareStatement("INSERT INTO batchClear VALUES (?)")) {
try (PreparedStatement prep =
sharedConn.prepareStatement("INSERT INTO batchClear VALUES (?)")) {
prep.setString(1, "1");
prep.addBatch();

Expand Down

0 comments on commit da715da

Please sign in to comment.