mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
6 lines
314 B
MySQL
6 lines
314 B
MySQL
|
drop table if exists test;
|
||
|
create table test (x UInt32, y String, d Date) engine=Memory() as select number as x, toString(number) as y, toDate(number) as d from numbers(10);
|
||
|
insert into table function file('data.native.zst') select * from test;
|
||
|
desc file('data.native.zst');
|
||
|
select * from file('data.native.zst');
|