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 @Test
public void test() throws SQLException { public void test() throws SQLException {
execute("drop database if exists " + dbName); // execute("drop database if exists " + dbName);
execute("create database if not exists " + dbName); // execute("create database if not exists " + dbName);
execute("use " + dbName); execute("use " + dbName);
execute("drop table if exists " + dbName + "." + stbName + ""); // execute("drop table if exists " + dbName + "." + stbName + "");
createSTable(); // createSTable();
createTable(); // createTable();
insert(); // insert();
// selectMultiThreading(); selectMultiThreading();
close(); close();
} }