ClickHouse/tests/queries/0_stateless/03145_unicode_quotes.sql
2024-05-05 04:23:58 +02:00

10 lines
458 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 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;