repro.sql

text/plain

Filename: repro.sql
Type: text/plain
Part: 3
Message: Re: [COMMITTERS] pgsql: Fix freezing of a dead HOT-updated tuple
drop table t;
create table t (id int primary key, name char(3), x integer)
-- with (fillfactor = 10)
;

insert into t values (1, '111', 0);
insert into t values (3, '333', 0);