File tree Expand file tree Collapse file tree 2 files changed +36
-5
lines changed
data/nereids_rules_p0/agg_join_pkfk
framework/src/main/groovy/org/apache/doris/regression/suite Expand file tree Collapse file tree 2 files changed +36
-5
lines changed Original file line number Diff line number Diff line change 1+ -- This file is automatically generated. You should know what you did if you want to edit this
2+ -- !not_push_down_shape --
3+ PhysicalResultSink
4+ --hashAgg[GLOBAL]
5+ ----hashAgg[LOCAL]
6+ ------hashJoin[INNER_JOIN] hashCondition=((store_sales_test.ss_customer_sk = customer_test.c_customer_sk)) otherCondition=()
7+ --------PhysicalOlapScan[store_sales_test]
8+ --------PhysicalOlapScan[customer_test]
9+
10+ -- !not_push_down_result --
11+ Smith John 2024-01-01
12+
13+ -- !push_down_shape --
14+ PhysicalResultSink
15+ --hashJoin[INNER_JOIN] hashCondition=((store_sales_test.ss_customer_sk = customer_test.c_customer_sk)) otherCondition=()
16+ ----hashAgg[GLOBAL]
17+ ------hashAgg[LOCAL]
18+ --------PhysicalOlapScan[store_sales_test]
19+ ----PhysicalOlapScan[customer_test]
20+
21+ -- !push_down_result --
22+ John 1 2024-01-01
23+ John 2 2024-01-01
24+
25+ -- !push_down_with_count_shape --
26+ PhysicalResultSink
27+ --hashJoin[INNER_JOIN] hashCondition=((store_sales_test.ss_customer_sk = customer_test.c_customer_sk)) otherCondition=()
28+ ----hashAgg[GLOBAL]
29+ ------hashAgg[LOCAL]
30+ --------PhysicalOlapScan[store_sales_test]
31+ ----PhysicalOlapScan[customer_test]
32+
33+ -- !push_down_with_count_result --
34+ John 1 2024-01-01 1
35+ John 2 2024-01-01 1
36+
Original file line number Diff line number Diff line change @@ -3537,9 +3537,4 @@ class Suite implements GroovyInterceptable {
35373537 GlobalLock . unlock(lockName)
35383538 }
35393539 }
3540-
3541- def explain_and_result = { tag , sql ->
3542- " qt_${ tag} _shape" " explain shape plan ${ sql} "
3543- " order_qt_${ tag} _result" " ${ sql} "
3544- }
35453540}
You can’t perform that action at this time.
0 commit comments