Skip to content
Closed
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
4 changes: 0 additions & 4 deletions src/test/java/testsuite/regression/SyntaxRegressionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,6 @@ public void testJsonType() throws Exception {
testJsonTypeCheckFunction("SELECT JSON_VALID('{\"a\": 1}')", "1");
}

@Test
private void testJsonTypeCheckFunction(String sql, String expectedResult) throws Exception {
this.rs = this.stmt.executeQuery(sql);
assertTrue(this.rs.next());
Expand Down Expand Up @@ -1302,7 +1301,6 @@ public void testCreateTablespace() throws Exception {
}
}

@Test
private void testCreateTablespaceCheckTablespaces(int expectedTsCount) throws Exception {
if (versionMeetsMinimum(8, 0, 3)) {
this.rs = this.stmt.executeQuery("SELECT COUNT(*) FROM information_schema.innodb_tablespaces WHERE name LIKE 'testTs_'");
Expand All @@ -1313,7 +1311,6 @@ private void testCreateTablespaceCheckTablespaces(int expectedTsCount) throws Ex
assertEquals(expectedTsCount, this.rs.getInt(1));
}

@Test
private void testCreateTablespaceCheckTables(String tablespace, int expectedTblCount) throws Exception {
if (versionMeetsMinimum(8, 0, 3)) {
this.rs = this.stmt.executeQuery("SELECT COUNT(*) FROM information_schema.innodb_tables a, information_schema.innodb_tablespaces b "
Expand Down Expand Up @@ -1372,7 +1369,6 @@ public void testSetMergeThreshold() throws Exception {
testSetMergeThresholdIndices(tableMergeThreshold, keyMergeThresholds);
}

@Test
private void testSetMergeThresholdIndices(int defaultMergeThreshold, Map<String, Integer> keyMergeThresholds) throws Exception {
boolean dbMapsToSchema = ((JdbcConnection) this.conn).getPropertySet().<DatabaseTerm>getEnumProperty(PropertyKey.databaseTerm)
.getValue() == DatabaseTerm.SCHEMA;
Expand Down
1 change: 0 additions & 1 deletion src/test/java/testsuite/simple/StatementsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ public void testBinaryResultSetNumericTypes() throws Exception {
sspsConn.close();
}

@Test
private void testBinaryResultSetNumericTypesInternal(Connection con) throws Exception {
/*
* TINYINT 1 -128 127 SMALLINT 2 -32768 32767 MEDIUMINT 3 -8388608
Expand Down