mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
7 lines
316 B
SQL
7 lines
316 B
SQL
-- Tags: no-fasttest
|
|
|
|
insert into table function file('/dev/null', 'Parquet', 'number UInt64') select * from numbers(10);
|
|
insert into table function file('/dev/null', 'ORC', 'number UInt64') select * from numbers(10);
|
|
insert into table function file('/dev/null', 'JSON', 'number UInt64') select * from numbers(10);
|
|
|