ClickHouse/tests/queries/0_stateless/03145_unicode_quotes.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
458 B
MySQL
Raw Normal View History

2024-05-05 02:23:58 +00:00
-- 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;