Skip to content

Commit

Permalink
Update src/test/java/com/microsoft/sqlserver/jdbc/connection/RequestB…
Browse files Browse the repository at this point in the history
…oundaryMethodsTest.java

Co-authored-by: Jeff Wasty <v-jeffwasty@microsoft.com>
  • Loading branch information
Codegass and Jeffery-Wasty committed Apr 8, 2024
1 parent 9ff6369 commit 2dbd726
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,7 @@ public void testStatements() throws SQLException {
con.beginRequest();
try (Statement stmt = con.createStatement()) {
TestUtils.dropTableIfExists(AbstractSQLGenerator.escapeIdentifier(tableName), stmt);
stmt.executeUpdate(
"CREATE TABLE " + AbstractSQLGenerator.escapeIdentifier(tableName) + " (col int)");
stmt.executeUpdate("CREATE TABLE " + AbstractSQLGenerator.escapeIdentifier(tableName) + " (col int)");
try (PreparedStatement ps = con.prepareStatement(
"INSERT INTO " + AbstractSQLGenerator.escapeIdentifier(tableName) + " values (?)")) {
ps.setInt(1, 2);
Expand Down

0 comments on commit 2dbd726

Please sign in to comment.