This commit is contained in:
Alexey Milovidov 2024-06-30 01:28:50 +02:00
parent 01c4301165
commit cf1f0d3cf6

View File

@ -5,6 +5,7 @@ DROP TABLE IF EXISTS t_json;
DROP TABLE IF EXISTS t_map;
SET allow_experimental_object_type = 1;
SET optimize_trivial_insert_select = 1;
CREATE TABLE t_json(id UInt64, obj JSON) ENGINE = MergeTree ORDER BY id;
CREATE TABLE t_map(id UInt64, m Map(String, UInt64)) ENGINE = MergeTree ORDER BY id;