ClickHouse/tests/queries/0_stateless/01832_memory_write_suffix.sql
2021-04-25 12:47:30 +03:00

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;