This website requires JavaScript.
Explore
Help
Sign In
thevar1able
/
ClickHouse
Watch
1
Star
0
Fork
0
You've already forked ClickHouse
mirror of
https://github.com/ClickHouse/ClickHouse.git
synced
2024-11-18 21:51:57 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
09a4f82d0f
ClickHouse
/
tests
/
queries
/
0_stateless
/
01754_clickhouse_format_backslash.reference
17 lines
191 B
Plaintext
Raw
Normal View
History
Unescape
Escape
add --backslash option for clickhouse-format fix fix fix
2021-03-06 10:51:39 +00:00
SELECT * \
Change formatting of subqueries (make it more human friendly) 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
2021-05-15 09:11:13 +00:00
FROM \
add --backslash option for clickhouse-format fix fix fix
2021-03-06 10:51:39 +00:00
( \
SELECT 1 AS x \
UNION ALL \
SELECT 1 \
UNION DISTINCT \
SELECT 3 \
)
SELECT 1 \
UNION ALL \
( \
SELECT 1 \
UNION DISTINCT \
SELECT 1 \
)
Reference in New Issue
Copy Permalink