This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch auto-pick-41674-branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
from 9096671b827 [enhancement](rowset-meta) Remove rowset meta from olap meta directly… (#43184) add f6140f01821 [improvement](mtmv) Support rewrite by materialized view when join has other join conjuncts (#41674) No new revisions were added by this update. Summary of changes: .../jobs/joinorder/hypergraph/edge/Edge.java | 4 - .../rules/exploration/mv/HyperGraphComparator.java | 4 +- .../nereids/rules/exploration/mv/StructInfo.java | 34 +- .../exploration/mv/mapping/RelationMapping.java | 100 +- .../nereids/rules/exploration/mv/MappingTest.java | 269 +++ .../anti/other_join_conjuncts_anti.out | 65 + .../inner/other_join_conjuncts_inner.out | 1489 ++++++++++++ .../outer/other_join_conjuncts_outer.out | 2545 ++++++++++++++++++++ .../semi/other_join_conjuncts_semi.out | 281 +++ .../data/nereids_rules_p0/mv/tpch/mv_tpch_test.out | 180 ++ .../mv/negative/negative_test.groovy | 2 +- .../anti/other_join_conjuncts_anti.groovy | 459 ++++ .../inner/other_join_conjuncts_inner.groovy | 873 +++++++ .../outer/other_join_conjuncts_outer.groovy | 1503 ++++++++++++ .../semi/other_join_conjuncts_semi.groovy | 457 ++++ .../nereids_rules_p0/mv/tpch/mv_tpch_test.groovy | 357 ++- .../nereids_rules_p0/mv/variant/variant_mv.groovy | 6 +- 17 files changed, 8530 insertions(+), 98 deletions(-) create mode 100644 regression-test/data/nereids_rules_p0/mv/other_join_conjuncts/anti/other_join_conjuncts_anti.out create mode 100644 regression-test/data/nereids_rules_p0/mv/other_join_conjuncts/inner/other_join_conjuncts_inner.out create mode 100644 regression-test/data/nereids_rules_p0/mv/other_join_conjuncts/outer/other_join_conjuncts_outer.out create mode 100644 regression-test/data/nereids_rules_p0/mv/other_join_conjuncts/semi/other_join_conjuncts_semi.out create mode 100644 regression-test/suites/nereids_rules_p0/mv/other_join_conjuncts/anti/other_join_conjuncts_anti.groovy create mode 100644 regression-test/suites/nereids_rules_p0/mv/other_join_conjuncts/inner/other_join_conjuncts_inner.groovy create mode 100644 regression-test/suites/nereids_rules_p0/mv/other_join_conjuncts/outer/other_join_conjuncts_outer.groovy create mode 100644 regression-test/suites/nereids_rules_p0/mv/other_join_conjuncts/semi/other_join_conjuncts_semi.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org