mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
10 lines
458 B
SQL
10 lines
458 B
SQL
-- They work:
|
||
SELECT ‘This is an example of using English-style Unicode single quotes.’ AS “curly”;
|
||
|
||
-- It is unspecified which escaping rules apply inside the literal in Unicode quotes, and currently none apply (similarly to heredocs)
|
||
-- This could be changed.
|
||
|
||
SELECT ‘This is \an \\example ‘of using English-style Unicode single quotes.\’ AS “\c\\u\\\r\\\\l\\\\\y\\\\\\” FORMAT Vertical;
|
||
|
||
SELECT ‘’ = '' AS “1” FORMAT JSONLines;
|