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

View File

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