fix test case

This commit is contained in:
zhaoyanggh 2021-07-19 15:43:41 +08:00
parent 20bb141347
commit d26a7ca3ba
1 changed files with 2 additions and 3 deletions

View File

@ -33,9 +33,8 @@ public class ResetQueryCacheTest {
@Test
public void testResetQueryCache() throws SQLException {
String resetSql = "reset query cache";
statement.execute(resetSql);
// ResultSet rs = statement.executeQuery(resetSql);
// rs.close();
ResultSet rs = statement.executeQuery(resetSql);
rs.close();
}
@After