ClickHouse/tests/queries/0_stateless/02533_generate_random_schema_inference.sql
2023-01-12 22:29:23 +00:00

7 lines
183 B
SQL

drop table if exists test;
create table test (x UInt32, y String) engine=Memory;
insert into test select * from generateRandom() limit 10;
select count() from test;
drop table test;