From 1795735950f7a1d223fcb164089e04df2fc682a7 Mon Sep 17 00:00:00 2001 From: hexiaoting Date: Thu, 4 Feb 2021 10:23:03 +0800 Subject: [PATCH] Remove create-db sql in test case --- .../01653_move_conditions_from_join_on_to_where.sql | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/queries/0_stateless/01653_move_conditions_from_join_on_to_where.sql b/tests/queries/0_stateless/01653_move_conditions_from_join_on_to_where.sql index 9ec8f0fe156..259ff822f3f 100644 --- a/tests/queries/0_stateless/01653_move_conditions_from_join_on_to_where.sql +++ b/tests/queries/0_stateless/01653_move_conditions_from_join_on_to_where.sql @@ -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 table2; @@ -39,4 +36,3 @@ SELECT * FROM table1 JOIN table2 ON (table1.a = table2.a) AND (table2.b < toUInt DROP TABLE table1; DROP TABLE table2; -DROP DATABASE test_01653;