mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
8 lines
280 B
SQL
8 lines
280 B
SQL
drop table if exists data_01832;
|
|
|
|
-- Memory writes from the writeSuffix() and if it will be called twice two rows
|
|
-- will be written (since it does not reset the block).
|
|
create table data_01832 (key Int) Engine=Memory;
|
|
insert into data_01832 values (1);
|
|
select * from data_01832;
|