mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
8b438bcd3c
Fix trailing whitespaces in FROM/IN clause with subqueries in multiline mode, and also changes the output of the queries slightly in a more human friendly way. Before: $ clickhouse-format <<<'select * from system.one, (select * from system.one)' SELECT * FROM system.one , ( SELECT * FROM system.one ) After: $ clickhouse-format <<<'select * from system.one, (select * from system.one)' SELECT * FROM system.one, ( SELECT * FROM system.one ) v2: Fix subqueries formatting in a different way v3: Adjust *.reference in tests v4: Fix modernize-loop-convert in ASTTablesInSelectQuery
30 lines
525 B
Plaintext
30 lines
525 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)
|