mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +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
22 lines
402 B
SQL
22 lines
402 B
SQL
SELECT
|
|
'Nul\0able\0String)Nul\0\0ble(String)Nul\0able(String)Nul\0able(String)',
|
|
NULL AND 2,
|
|
'',
|
|
number,
|
|
NULL AS k
|
|
FROM
|
|
(
|
|
SELECT
|
|
materialize(NULL) OR materialize(-9223372036854775808),
|
|
number
|
|
FROM system.numbers
|
|
LIMIT 1000000
|
|
)
|
|
ORDER BY
|
|
k ASC,
|
|
number ASC,
|
|
k ASC
|
|
LIMIT 1023, 1023
|
|
SETTINGS max_bytes_before_external_sort = 1000000
|
|
FORMAT Null;
|