ClickHouse/tests/queries/0_stateless/02311_normalize_utf8_constant.sql

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

14 lines
222 B
MySQL
Raw Normal View History

2022-05-23 21:44:05 +00:00
-- Tags: no-fasttest
2022-05-23 10:21:59 +00:00
SELECT
'â' AS s,
normalizeUTF8NFC(s) s1,
normalizeUTF8NFD(s) s2,
normalizeUTF8NFKC(s) s3,
normalizeUTF8NFKD(s) s4,
hex(s),
hex(s1),
hex(s2),
hex(s3),
hex(s4);