Skip to content

Commit

Permalink
Updated test testAddbatch2AEOnConnection
Browse files Browse the repository at this point in the history
  • Loading branch information
tkyc committed Jan 8, 2024
1 parent 3af81f3 commit 4b0f854
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ public void testAddBatch2(Connection conn) throws SQLException {
@Tag(Constants.xSQLv11)
@Tag(Constants.xSQLv12)
public void testAddbatch2AEOnConnection() throws SQLException {
try (Connection connection = PrepUtil.getConnection(connectionString + ";columnEncryptionSetting=Enabled;")) {
String cs = TestUtils.addOrOverrideProperty(connectionString, "columnEncryptionSetting", "Enabled");
cs = TestUtils.addOrOverrideProperty(cs, "sendStringParametersAsUnicode", "false");
try (Connection connection = PrepUtil.getConnection(cs)) {
testAddBatch2(connection);
}
}
Expand Down

0 comments on commit 4b0f854

Please sign in to comment.