We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb4d025 commit 9864d63Copy full SHA for 9864d63
mysql-plugin/src/main/java/io/cdap/plugin/mysql/MysqlConnectorConfig.java
@@ -61,7 +61,7 @@ public Properties getConnectionArgumentsProperties() {
61
prop.put(JDBC_PROPERTY_SOCKET_TIMEOUT, "20000");
62
prop.put(JDBC_REWRITE_BATCHED_STATEMENTS, "true");
63
// MySQL property to ensure that TINYINT(1) type data is not converted to MySQL Bit/Boolean type in the ResultSet.
64
- prop.put(MYSQL_TINYINT1_IS_BIT, "false");
+ prop.putIfAbsent(MYSQL_TINYINT1_IS_BIT, "false");
65
return prop;
66
}
67
0 commit comments