repro.sql
text/plain
Filename: repro.sql
Type: text/plain
Part: 3
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);