ClickHouse/tests/queries/0_stateless/02211_jsonl_format_extension.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
221 B
MySQL
Raw Normal View History

2023-04-09 23:40:32 +00:00
-- Tags: no-fasttest, no-parallel
insert into table function file('data.jsonl', 'JSONEachRow', 'x UInt32') select * from numbers(10) SETTINGS engine_file_truncate_on_insert=1;
select * from file('data.jsonl') order by x;