ClickHouse/tests/queries/0_stateless/00488_non_ascii_column_names.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

7 lines
248 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 non_ascii;
CREATE TABLE non_ascii (`привет` String, `мир` String) ENGINE = TinyLog;
INSERT INTO non_ascii VALUES ('hello', 'world');
SELECT `привет` FROM non_ascii;
SELECT * FROM non_ascii;
DROP TABLE non_ascii;