Bug #439: no inherits constraints - Mailing list pgsql-bugs

From pgsql-bugs@postgresql.org
Subject Bug #439: no inherits constraints
Date
Msg-id 200109061429.f86ET0817122@hub.org
Whole thread Raw
List pgsql-bugs
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

pgsql-bugs by date:

Previous
From: Michał Pasternak
Date:
Subject: Re: ILIKE + OR fault - propably a memory leak
Next
From: pgsql-bugs@postgresql.org
Date:
Subject: Bug #440: trigger can not find a function