ClickHouse/dbms/tests/queries/0_stateless/00499_json_enum_insert.sql

14 lines
428 B
MySQL
Raw Normal View History

2017-09-01 22:00:25 +00:00
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;