arnauld michelizza (am(at)adomos(dot)com) reports a bug with a severity of 3
The lower the number the more severe it is.
Short Description
no inherits constraints
Long Description
Constraint are not herited.
Sample Code
create table foo (id int primary key);
create table bar () inherits (foo);
insert into foo values (1);
insert into bar values (1);
select * from foo;
No file was uploaded with this report