ClickHouse/tests/queries/0_stateless/00462_json_true_false_literals.sql
2021-09-12 17:15:28 +03:00

9 lines
317 B
SQL

-- Tags: no-fasttest
DROP TABLE IF EXISTS json;
CREATE TABLE json (x UInt8, title String) ENGINE = Memory;
INSERT INTO json FORMAT JSONEachRow {"x": true, "title": "true"}, {"x": false, "title": "false"}, {"x": 0, "title": "0"}, {"x": 1, "title": "1"};
SELECT * FROM json ORDER BY title;
DROP TABLE IF EXISTS json;