This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 6652287b52 [Fix](regression-test) fix unstable test case nereids_p0/update (#20692) 6652287b52 is described below commit 6652287b5265e579bae5af8e10d0036b1d490611 Author: mch_ucchi <41606806+sohardforan...@users.noreply.github.com> AuthorDate: Mon Jun 12 20:55:22 2023 +0800 [Fix](regression-test) fix unstable test case nereids_p0/update (#20692) --- regression-test/suites/nereids_p0/update/load.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/regression-test/suites/nereids_p0/update/load.groovy b/regression-test/suites/nereids_p0/update/load.groovy index 16f7ba5a07..6415361b09 100644 --- a/regression-test/suites/nereids_p0/update/load.groovy +++ b/regression-test/suites/nereids_p0/update/load.groovy @@ -16,6 +16,7 @@ // under the License. suite("load") { + sql 'drop table if exists t1' sql ''' create table t1 ( id int, @@ -32,6 +33,7 @@ suite("load") { ); ''' + sql 'drop table if exists t2' sql ''' create table t2 ( id int, @@ -46,6 +48,7 @@ suite("load") { ); ''' + sql 'drop table if exists t3' sql ''' create table t3 ( id int --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org