This is an automated email from the ASF dual-hosted git repository. starocean999 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 15f07b96c6c [chore](test) rename conflict name under same database in test cases (#39243) 15f07b96c6c is described below commit 15f07b96c6c3b1202175c6bbd3bdf8c4080073b5 Author: morrySnow <101034200+morrys...@users.noreply.github.com> AuthorDate: Wed Aug 14 12:20:17 2024 +0800 [chore](test) rename conflict name under same database in test cases (#39243) --- regression-test/suites/nereids_p0/join/test_join_14.groovy | 6 +++--- regression-test/suites/nereids_p0/join/test_join_15.groovy | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/regression-test/suites/nereids_p0/join/test_join_14.groovy b/regression-test/suites/nereids_p0/join/test_join_14.groovy index 3bdbc8ae356..95a8d954d35 100644 --- a/regression-test/suites/nereids_p0/join/test_join_14.groovy +++ b/regression-test/suites/nereids_p0/join/test_join_14.groovy @@ -144,10 +144,10 @@ suite("test_join_14", "nereids_p0") { order by 1 limit 65535""" check2_doris(res63, res64) - sql"drop view if exists nullable" - sql"""create view nullable(n1, n2) as select a.k1, b.k2 from baseall + sql"drop view if exists nullable_14" + sql"""create view nullable_14(n1, n2) as select a.k1, b.k2 from baseall a left join bigtable b on a.k1 = b.k1 + 10 where b.k2 is null""" - qt_join_bug1"""select k1, n1 from baseall a right outer join nullable b on a.k1 % 2 = b.n1 % 2 + qt_join_bug1"""select k1, n1 from baseall a right outer join nullable_14 b on a.k1 % 2 = b.n1 % 2 order by a.k1, b.n1""" qt_join_bug2"""select n.k1, m.k1, m.k2, n.k2 from (select a.k1, a.k2, a.k3 from baseall a join baseall b on (a.k1 = b.k1 and a.k2 = b.k2 and a.k3 = b.k3)) m diff --git a/regression-test/suites/nereids_p0/join/test_join_15.groovy b/regression-test/suites/nereids_p0/join/test_join_15.groovy index 2a1487b79f7..537c6e2611e 100644 --- a/regression-test/suites/nereids_p0/join/test_join_15.groovy +++ b/regression-test/suites/nereids_p0/join/test_join_15.groovy @@ -83,10 +83,11 @@ suite("test_join_15", "nereids_p0") { check2_doris(res83, res84) // join multi table - sql"drop view if exists nullable" - sql"""create view nullable(n1, n2) as select a.k1, b.k2 from baseall + String null_name = "nullable_15" + sql"drop view if exists ${null_name}" + sql"""create view ${null_name}(n1, n2) as select a.k1, b.k2 from baseall a left join bigtable b on a.k1 = b.k1 + 10 where b.k2 is null""" - String null_name = "nullable" + for (t in join_types){ qt_join_multi_table1"""select * from ${tbName2} a ${t} join ${null_name} b on a.k1 = b.n1 order by --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org