postgrespro / postgres_cluster

Various experiments with PostgreSQL clustering
Other
151 stars 28 forks source link

"alter table ... set with oids" is broken #17

Closed kelvich closed 7 years ago

kelvich commented 8 years ago
create table testoids(key int primary key, data text) without oids;
insert into testoids values(1, '1');
alter table testoids set with oids;