mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
7 lines
255 B
SQL
7 lines
255 B
SQL
-- Tags: no-fasttest
|
|
set allow_experimental_object_type=1;
|
|
desc format(JSONEachRow, '{"a" : {"b" : {"c" : 1, "d" : "str"}}}');
|
|
set allow_experimental_object_type=0;
|
|
desc format(JSONEachRow, '{"a" : {"b" : {"c" : 1, "d" : "str"}}}'); -- {serverError 652}
|
|
|