clickhouse
clickhouse copied to clipboard
JSONEachRow
support JSONEachRow format added. This format allow insert arrays of objects or write objects to insert stream in cases when field list can not be parsed.
i.e. "insert into test_array (*)".
TabSeparated is still default format, hence you should set format:
insert into test_array (*) FORMAT JSONEachRow
it solved my problem
Should I do something for confirm?