mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-06 14:32:22 +00:00
766d816df6
when support for settings was added in #39681 the formating was not altered to support settings now it's supported
9 lines
337 B
Plaintext
9 lines
337 B
Plaintext
SELECT data
|
|
FROM executable(\'\', \'JSON\', \'data String\')
|
|
--------------------
|
|
SELECT data
|
|
FROM executable(\'\', \'JSON\', \'data String\', SETTINGS max_command_execution_time = 100)
|
|
--------------------
|
|
SELECT data
|
|
FROM executable(\'\', \'JSON\', \'data String\', SETTINGS max_command_execution_time = 100, command_read_timeout = 1)
|