ClickHouse/tests/queries/0_stateless/00808_not_optimize_predicate.reference
Mikhail Filimonov 22bd22702e
Fix enable_optimize_predicate_expression for finalizeAggregation
finalizeAggregation was wrongly marked as stateful, preventing pushing the conditions down.
2020-09-17 15:59:14 +02:00

30 lines
526 B
Plaintext

-------ENABLE OPTIMIZE PREDICATE-------
2000-01-01 1 test string 1 1 1
2000-01-01 1 test string 1 1 1
1
-------FORCE PRIMARY KEY-------
-------CHECK STATEFUL FUNCTIONS-------
1 a 0
2 b 0
2 a 0
(1,1)
(3,2)
(5,2)
-------finalizeAggregation should not be stateful (issue #14847)-------
2 62
3 87
4 112
5 137
SELECT
n,
`finalizeAggregation(s)`
FROM
(
SELECT
n,
finalizeAggregation(s)
FROM test_00808_push_down_with_finalizeAggregation
WHERE (n <= 5) AND (n >= 2)
)
WHERE (n >= 2) AND (n <= 5)