This commit is contained in:
zyyang 2021-01-28 15:41:08 +08:00
parent b11a514280
commit 20b1ea71e2
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@ public class BatcherInsertTest {
// create database
executor.doExecute("create database if not exists test");
//use database
executor.doExecute("use test");
executor.doExecute("use jdbctemplate_test");
// create table
executor.doExecute("create table if not exists test.weather (ts timestamp, temperature int, humidity float)");
executor.doExecute("create table if not exists jdbctemplate_test.weather (ts timestamp, temperature int, humidity float)");
}
@Test