mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 14:02:21 +00:00
4 lines
191 B
SQL
4 lines
191 B
SQL
SELECT * from numbers(1);
|
|
SELECT * from format('TSV', '123');
|
|
SELECT * from numbers(1) SETTINGS readonly=1;
|
|
SELECT * from format('TSV', '123') SETTINGS readonly=1; -- { serverError READONLY } |