ClickHouse/tests/queries/0_stateless/01832_memory_write_suffix.sql
2021-06-07 20:29:19 +03:00

10 lines
304 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;
drop table data_01832;