Thread: Bug #439: no inherits constraints

Bug #439: no inherits constraints

From
pgsql-bugs@postgresql.org
Date:
arnauld michelizza (am@adomos.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