ClickHouse/dbms/tests/queries/0_stateless/00499_json_enum_insert.sql
2017-09-02 01:00:25 +03:00

14 lines
428 B
SQL

DROP TABLE IF EXISTS test.json;
CREATE TABLE test.json (x Enum8('browser' = 1, 'mobile' = 2), y String) ENGINE = Memory;
INSERT INTO test.json (y) VALUES ('Hello');
SELECT * FROM test.json ORDER BY y;
INSERT INTO test.json (y) FORMAT JSONEachRow {"y": "World 1"};
SELECT * FROM test.json ORDER BY y;
INSERT INTO test.json (x, y) FORMAT JSONEachRow {"y": "World 2"};
SELECT * FROM test.json ORDER BY y;
DROP TABLE test.json;