mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
12 lines
552 B
SQL
12 lines
552 B
SQL
-- Tags: no-fasttest, no-parallel
|
|
|
|
insert into function file('02267_data2.jsonl') select NULL as x;
|
|
insert into function file('02267_data3.jsonl') select * from numbers(0);
|
|
insert into function file('02267_data4.jsonl') select 1 as x;
|
|
select * from file('02267_data*.jsonl') order by x;
|
|
|
|
insert into function file('02267_data1.jsonl', 'TSV') select 1 as x;
|
|
insert into function file('02267_data1.jsonl', 'TSV') select [1,2,3] as x;
|
|
|
|
select * from file('02267_data*.jsonl') settings schema_inference_use_cache_for_file=0; --{serverError INCORRECT_DATA}
|