Remove create-db sql in test case

This commit is contained in:
hexiaoting 2021-02-04 10:23:03 +08:00
parent 45aee71fff
commit 1795735950

View File

@ -1,6 +1,3 @@
DROP DATABASE IF EXISTS test_01653;
CREATE DATABASE test_01653;
USE test_01653;
DROP TABLE IF EXISTS table1; DROP TABLE IF EXISTS table1;
DROP TABLE IF EXISTS table2; DROP TABLE IF EXISTS table2;
@ -39,4 +36,3 @@ SELECT * FROM table1 JOIN table2 ON (table1.a = table2.a) AND (table2.b < toUInt
DROP TABLE table1; DROP TABLE table1;
DROP TABLE table2; DROP TABLE table2;
DROP DATABASE test_01653;