This commit is contained in:
zyyang 2021-02-04 14:06:44 +08:00
parent ca9dfb8a17
commit 5e6028b503
1 changed files with 7 additions and 7 deletions

View File

@ -19,14 +19,14 @@ public class InvalidResultSetPointerTest {
@Test
public void test() throws SQLException {
execute("drop database if exists " + dbName);
execute("create database if not exists " + dbName);
// execute("drop database if exists " + dbName);
// execute("create database if not exists " + dbName);
execute("use " + dbName);
execute("drop table if exists " + dbName + "." + stbName + "");
createSTable();
createTable();
insert();
// selectMultiThreading();
// execute("drop table if exists " + dbName + "." + stbName + "");
// createSTable();
// createTable();
// insert();
selectMultiThreading();
close();
}