Skip to content

Commit a9b3fd3

Browse files
add case
1 parent c2bed40 commit a9b3fd3

File tree

2 files changed

+36
-5
lines changed

2 files changed

+36
-5
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+

regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)