@@ -324,16 +324,12 @@ static DriverPropertyInfo[] defaultPropertyInfo(@Nullable String localDatacenter
324324
325325 YdbOperationProperty .CACHE_CONNECTIONS_IN_DRIVER .toDriverPropertyInfo ("true" ),
326326
327- YdbOperationProperty .ENFORCE_SQL_V1 .toDriverPropertyInfo ("false" ),
328-
329327 YdbOperationProperty .DISABLE_DETECT_SQL_OPERATIONS .toDriverPropertyInfo ("false" ),
330328 YdbOperationProperty .DISABLE_PREPARE_DATAQUERY .toDriverPropertyInfo ("false" ),
331329 YdbOperationProperty .DISABLE_AUTO_PREPARED_BATCHES .toDriverPropertyInfo ("false" ),
332330 YdbOperationProperty .DISABLE_JDBC_PARAMETERS .toDriverPropertyInfo ("false" ),
333331 YdbOperationProperty .DISABLE_JDBC_PARAMETERS_DECLARE .toDriverPropertyInfo ("false" ),
334332
335- YdbOperationProperty .JDBC_SUPPORT_LEVEL .toDriverPropertyInfo ("" + YdbConst .DEFAULT_JDBC_SUPPORT_LEVEL ),
336-
337333 YdbOperationProperty .SCAN_QUERY_TX_MODE .toDriverPropertyInfo ("ERROR" ),
338334 YdbOperationProperty .SCHEME_QUERY_TX_MODE .toDriverPropertyInfo ("ERROR" ),
339335 YdbOperationProperty .FORCE_QUERY_MODE .toDriverPropertyInfo (null ),
@@ -368,13 +364,11 @@ static Properties customizedProperties() {
368364
369365 properties .setProperty ("cacheConnectionsInDriver" , "false" );
370366
371- properties .setProperty ("enforceSqlV1" , "true" );
372367 properties .setProperty ("disablePrepareDataQuery" , "true" );
373368 properties .setProperty ("disableAutoPreparedBatches" , "true" );
374369 properties .setProperty ("disableDetectSqlOperations" , "true" );
375370 properties .setProperty ("disableJdbcParameters" , "true" );
376371 properties .setProperty ("disableJdbcParameterDeclare" , "true" );
377- properties .setProperty ("jdbcSupportLevel" , "0" );
378372
379373 properties .setProperty ("scanQueryTxMode" , "FAKE_TX" );
380374 properties .setProperty ("schemeQueryTxMode" , "SHADOW_COMMIT" );
@@ -410,15 +404,12 @@ static DriverPropertyInfo[] customizedPropertyInfo() {
410404
411405 YdbOperationProperty .CACHE_CONNECTIONS_IN_DRIVER .toDriverPropertyInfo ("false" ),
412406
413- YdbOperationProperty .ENFORCE_SQL_V1 .toDriverPropertyInfo ("true" ),
414407 YdbOperationProperty .DISABLE_DETECT_SQL_OPERATIONS .toDriverPropertyInfo ("true" ),
415408 YdbOperationProperty .DISABLE_PREPARE_DATAQUERY .toDriverPropertyInfo ("true" ),
416409 YdbOperationProperty .DISABLE_AUTO_PREPARED_BATCHES .toDriverPropertyInfo ("true" ),
417410 YdbOperationProperty .DISABLE_JDBC_PARAMETERS .toDriverPropertyInfo ("true" ),
418411 YdbOperationProperty .DISABLE_JDBC_PARAMETERS_DECLARE .toDriverPropertyInfo ("true" ),
419412
420- YdbOperationProperty .JDBC_SUPPORT_LEVEL .toDriverPropertyInfo ("0" ),
421-
422413 YdbOperationProperty .SCAN_QUERY_TX_MODE .toDriverPropertyInfo ("FAKE_TX" ),
423414 YdbOperationProperty .SCHEME_QUERY_TX_MODE .toDriverPropertyInfo ("SHADOW_COMMIT" ),
424415 YdbOperationProperty .FORCE_QUERY_MODE .toDriverPropertyInfo ("SCAN_QUERY" ),
@@ -439,7 +430,6 @@ static void checkCustomizedProperties(YdbProperties properties) {
439430 Assertions .assertTrue (ops .isAutoCommit ());
440431 Assertions .assertEquals (YdbConst .ONLINE_CONSISTENT_READ_ONLY , ops .getTransactionLevel ());
441432 Assertions .assertFalse (ops .isCacheConnectionsInDriver ());
442- Assertions .assertEquals (0 , ops .getJdbcSupportLevel ());
443433 }
444434
445435 static String asString (DriverPropertyInfo info ) {
0 commit comments