Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public final class MySQLJdbcQueryPropertiesExtension implements JdbcQueryPropert
private final Properties completeIfMissedQueryProps = new Properties();

public MySQLJdbcQueryPropertiesExtension() {
toBeOverrideQueryProps.setProperty("useSSL", Boolean.FALSE.toString());
toBeOverrideQueryProps.setProperty("useServerPrepStmts", Boolean.FALSE.toString());
toBeOverrideQueryProps.setProperty("rewriteBatchedStatements", Boolean.TRUE.toString());
toBeOverrideQueryProps.setProperty("yearIsDateType", Boolean.FALSE.toString());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ private void assertExtension(final JdbcQueryPropertiesExtension actual) {
}

private void assertQueryProperties(final Properties actual, final String expectedNetTimeoutForStreamingResults) {
assertThat(actual.size(), is(8));
assertThat(actual.getProperty("useSSL"), is(Boolean.FALSE.toString()));
assertThat(actual.size(), is(7));
assertThat(actual.getProperty("useServerPrepStmts"), is(Boolean.FALSE.toString()));
assertThat(actual.getProperty("rewriteBatchedStatements"), is(Boolean.TRUE.toString()));
assertThat(actual.getProperty("yearIsDateType"), is(Boolean.FALSE.toString()));
Expand Down