ClickHouse/tests/queries/0_stateless/01832_memory_write_suffix.sql

8 lines
280 B
MySQL
Raw Normal View History

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;