@@ -18,7 +18,7 @@ public enum DriverProperties {
1818 * JDBC allows throwing SQLException for unsupported values and methods.
1919 * But driver can ignore them and continue execution. Driver will do no operation in such case.
2020 */
21- IGNORE_UNSUPPORTED_VALUES ("jdbc_ignore_unsupported_values" , "false" ),
21+ IGNORE_UNSUPPORTED_VALUES ("jdbc_ignore_unsupported_values" , String . valueOf ( Boolean . FALSE ) ),
2222
2323 /**
2424 * Schema term to be used in the connection URL. Only `schema` is supported right now.
@@ -28,7 +28,7 @@ public enum DriverProperties {
2828 /**
2929 * Indicates if driver should create a secure connection over SSL/TLS
3030 */
31- SECURE_CONNECTION ("ssl" , "false" ),
31+ SECURE_CONNECTION ("ssl" , String . valueOf ( Boolean . FALSE ) ),
3232
3333 /**
3434 * Query settings to be passed along with query operation.
@@ -41,12 +41,12 @@ public enum DriverProperties {
4141 * PreparedStatement is used. Has limitation and can be used with a simple form of insert like;
4242 * {@code INSERT INTO t VALUES (?, ?, ?...)}
4343 */
44- BETA_ROW_BINARY_WRITER ("beta.row_binary_for_simple_insert" , "false" ),
44+ BETA_ROW_BINARY_WRITER ("beta.row_binary_for_simple_insert" , String . valueOf ( Boolean . FALSE ) ),
4545
4646 /**
4747 * Enables closing result set before
4848 */
49- RESULTSET_AUTO_CLOSE ("jdbc_resultset_auto_close" , "true" ),
49+ RESULTSET_AUTO_CLOSE ("jdbc_resultset_auto_close" , String . valueOf ( Boolean . FALSE ) ),
5050
5151 /**
5252 * Enables using server property `max_result_rows` ({@link ServerSettings#MAX_RESULT_ROWS} to limit number of rows returned by query.
@@ -56,7 +56,7 @@ public enum DriverProperties {
5656 * this is fine. It is recommended to set limit in SQL query.
5757 *
5858 */
59- USE_MAX_RESULT_ROWS ("jdbc_use_max_result_rows" , "false" ),
59+ USE_MAX_RESULT_ROWS ("jdbc_use_max_result_rows" , String . valueOf ( Boolean . FALSE ) ),
6060 ;
6161
6262
0 commit comments