ClickHouse/dbms/tests/queries/0_stateless/00488_non_ascii_column_names.sql
2017-08-07 11:05:03 +03:00

7 lines
278 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.

DROP TABLE IF EXISTS test.non_ascii;
CREATE TABLE test.non_ascii (`привет` String, `мир` String) ENGINE = TinyLog;
INSERT INTO test.non_ascii VALUES ('hello', 'world');
SELECT `привет` FROM test.non_ascii;
SELECT * FROM test.non_ascii;
DROP TABLE test.non_ascii;