mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
bbe38a3fe4
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
13 lines
389 B
SQL
13 lines
389 B
SQL
select 'foo' format Values;
|
|
select 'foo\'bar' format Values;
|
|
select 'foo\'\'bar' format Values;
|
|
|
|
select '\noutput_format_values_escape_quote_with_quote=1' format LineAsString;
|
|
set output_format_values_escape_quote_with_quote=1;
|
|
|
|
select 'foo' format Values;
|
|
select 'foo\'bar' format Values;
|
|
select 'foo\'\'bar' format Values;
|
|
-- fix no newline at end of file
|
|
select '' format LineAsString;
|