1
1
/*
2
- * Copyright (c) 2002, 2023 , Oracle and/or its affiliates.
2
+ * Copyright (c) 2002, 2024 , Oracle and/or its affiliates.
3
3
*
4
4
* This program is free software; you can redistribute it and/or modify it under
5
5
* the terms of the GNU General Public License, version 2.0, as published by the
@@ -1070,7 +1070,6 @@ public void testJsonType() throws Exception {
1070
1070
testJsonTypeCheckFunction ("SELECT JSON_VALID('{\" a\" : 1}')" , "1" );
1071
1071
}
1072
1072
1073
- @ Test
1074
1073
private void testJsonTypeCheckFunction (String sql , String expectedResult ) throws Exception {
1075
1074
this .rs = this .stmt .executeQuery (sql );
1076
1075
assertTrue (this .rs .next ());
@@ -1304,7 +1303,6 @@ public void testCreateTablespace() throws Exception {
1304
1303
}
1305
1304
}
1306
1305
1307
- @ Test
1308
1306
private void testCreateTablespaceCheckTablespaces (int expectedTsCount ) throws Exception {
1309
1307
if (versionMeetsMinimum (8 , 0 , 3 )) {
1310
1308
this .rs = this .stmt .executeQuery ("SELECT COUNT(*) FROM information_schema.innodb_tablespaces WHERE name LIKE 'testTs_'" );
@@ -1315,7 +1313,6 @@ private void testCreateTablespaceCheckTablespaces(int expectedTsCount) throws Ex
1315
1313
assertEquals (expectedTsCount , this .rs .getInt (1 ));
1316
1314
}
1317
1315
1318
- @ Test
1319
1316
private void testCreateTablespaceCheckTables (String tablespace , int expectedTblCount ) throws Exception {
1320
1317
if (versionMeetsMinimum (8 , 0 , 3 )) {
1321
1318
this .rs = this .stmt .executeQuery ("SELECT COUNT(*) FROM information_schema.innodb_tables a, information_schema.innodb_tablespaces b "
@@ -1374,7 +1371,6 @@ public void testSetMergeThreshold() throws Exception {
1374
1371
testSetMergeThresholdIndices (tableMergeThreshold , keyMergeThresholds );
1375
1372
}
1376
1373
1377
- @ Test
1378
1374
private void testSetMergeThresholdIndices (int defaultMergeThreshold , Map <String , Integer > keyMergeThresholds ) throws Exception {
1379
1375
boolean dbMapsToSchema = ((JdbcConnection ) this .conn ).getPropertySet ().<DatabaseTerm >getEnumProperty (PropertyKey .databaseTerm )
1380
1376
.getValue () == DatabaseTerm .SCHEMA ;
0 commit comments