This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 836a3f5c9d6934b9b8ff2b772078cb3397821821 Author: yiguolei <[email protected]> AuthorDate: Sat Aug 5 21:07:46 2023 +0800 [regression-test](delete) should drop table test before create it (#22633) Co-authored-by: yiguolei <[email protected]> --- regression-test/suites/delete_p0/test_delete.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regression-test/suites/delete_p0/test_delete.groovy b/regression-test/suites/delete_p0/test_delete.groovy index 95f1ea18cf..aa2f8ac932 100644 --- a/regression-test/suites/delete_p0/test_delete.groovy +++ b/regression-test/suites/delete_p0/test_delete.groovy @@ -219,6 +219,8 @@ suite("test_delete") { sql """ delete from delete_test_tb2 where k1 is null and k2 = 4.45; """ qt_check_numeric4 """ select k1, k2, v1 from delete_test_tb2 order by k1, k2; """; + sql """ DROP TABLE IF EXISTS test1 """ + sql ''' CREATE TABLE test1 ( x varchar NOT NULL, --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
