From cec3d19dd231a78e7e474dc10662ceb6ed90ac2c Mon Sep 17 00:00:00 2001 From: Xin Liao Date: Mon, 27 Feb 2023 17:14:49 +0800 Subject: [PATCH] [fix](regression) drop table before and after test for streamLoad_action case (#17164) --- regression-test/suites/demo_p0/streamLoad_action.groovy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/regression-test/suites/demo_p0/streamLoad_action.groovy b/regression-test/suites/demo_p0/streamLoad_action.groovy index 87affd32c4..d3835fd008 100644 --- a/regression-test/suites/demo_p0/streamLoad_action.groovy +++ b/regression-test/suites/demo_p0/streamLoad_action.groovy @@ -19,6 +19,8 @@ suite("streamLoad_action") { def tableName = "test_streamload_action1" + sql """ DROP TABLE IF EXISTS ${tableName} """ + sql """ CREATE TABLE IF NOT EXISTS ${tableName} ( id int, @@ -104,4 +106,7 @@ suite("streamLoad_action") { ORDER BY subq_0.`c1`, subq_0.`c0` DESC LIMIT 5; """ + + sql """ DROP TABLE ${tableName} """ + sql """ DROP TABLE B """ }