This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new aabe704c7db [test](mv)Fix test mv case fail because doesn't find test method (#47953) aabe704c7db is described below commit aabe704c7dbb88ca24f8146ae419c8422c021f0f Author: seawinde <w...@selectdb.com> AuthorDate: Mon Feb 17 14:50:30 2025 +0800 [test](mv)Fix test mv case fail because doesn't find test method (#47953) --- .../ddl_p0/test_create_table_like_nereids.groovy | 38 ++++++++++------------ 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/regression-test/suites/ddl_p0/test_create_table_like_nereids.groovy b/regression-test/suites/ddl_p0/test_create_table_like_nereids.groovy index 727f34f421d..d8b44428244 100644 --- a/regression-test/suites/ddl_p0/test_create_table_like_nereids.groovy +++ b/regression-test/suites/ddl_p0/test_create_table_like_nereids.groovy @@ -47,32 +47,30 @@ suite("test_create_table_like_nereids") { sql "drop table if exists table_like_with_roll_up" sql "CREATE TABLE table_like_with_roll_up LIKE mal_test_create_table_like with rollup;" - explain { - sql ("select sum(a) from table_like_with_roll_up group by a") - contains "ru1" - } ; - explain { - sql ("select sum(b) from table_like_with_roll_up group by b,pk ;") - contains "ru2" - } ; + sql """insert into table_like_with_roll_up values(2,1,3),(1,1,2),(3,5,6),(6,null,6),(4,5,6),(2,1,4),(2,3,5),(1,1,4) + ,(3,5,6),(3,5,null),(6,7,1),(2,1,7),(2,4,2),(2,3,9),(1,3,6),(3,5,8),(3,2,8);""" + + def desc_table_like_with_roll_up = sql """desc table_like_with_roll_up all;""" + logger.info("table_like_with_roll_up desc all is " + desc_table_like_with_roll_up) + + mv_rewrite_success_without_check_chosen("select sum(a) from table_like_with_roll_up group by a", "ru1") + mv_rewrite_success_without_check_chosen("select sum(b) from table_like_with_roll_up group by b,pk ;", "ru2") // with partial rollup sql "drop table if exists table_like_with_partial_roll_up;" sql "CREATE TABLE table_like_with_partial_roll_up LIKE mal_test_create_table_like with rollup (ru1);" - waitForRollUpJob("mal_test_create_table_like", "r1", 60000) - sql "select * from table_like_with_partial_roll_up order by pk, a, b" - explain { - sql("select sum(a) from table_like_with_partial_roll_up group by a") - contains("ru1") - } ; - explain { - sql ("select sum(b) from table_like_with_partial_roll_up group by b,pk ;") - notContains "ru2" - } ; + sql """insert into table_like_with_partial_roll_up values(2,1,3),(1,1,2),(3,5,6),(6,null,6),(4,5,6),(2,1,4),(2,3,5),(1,1,4) ,(3,5,6),(3,5,null),(6,7,1),(2,1,7),(2,4,2),(2,3,9),(1,3,6),(3,5,8),(3,2,8);""" - sql "sync" - sleep(2000) + + sql "select * from table_like_with_partial_roll_up order by pk, a, b" + + def desc_table_like_with_partial_roll_up = sql """desc table_like_with_partial_roll_up all;""" + logger.info("desc_table_like_with_partial_roll_up desc all is " + desc_table_like_with_partial_roll_up) + + mv_rewrite_success_without_check_chosen("select sum(a) from table_like_with_partial_roll_up group by a", "ru1") + mv_not_part_in("select sum(b) from table_like_with_partial_roll_up group by b,pk ;", "ru2") + sql "select sum(a) from table_like_with_partial_roll_up group by a order by 1" // test if not exists --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org