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-05 15:21:43 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
36ab47769b
ClickHouse
/
tests
/
queries
/
0_stateless
/
01891_echo.sql
8 lines
81 B
MySQL
Raw
Normal View
History
Unescape
Escape
clickhouse-client: echo queries only after "{ echo }" hint Before this patch clickhouse-client interprets the whole queries and if "{ echo }" found, it starts echoing queries, but this will make it impossible to skip some of lines.
2021-06-01 05:54:27 +00:00
select
1
;
-- { echo }
select
1
;
clickhouse-client: add echoOn/echoOff hints
2021-06-01 05:54:28 +00:00
-- { echoOff }
select
2
;
-- { echoOn }
select
2
;
Reference in New Issue
Copy Permalink