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

10 lines
304 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;
2021-06-07 17:29:19 +00:00
drop table data_01832;