Bug #439: no inherits constraints

From: pgsql-bugs(at)postgresql(dot)org
To: pgsql-bugs(at)postgresql(dot)org
Subject: Bug #439: no inherits constraints
Date: 2001-09-06 14:29:00
Message-ID: 200109061429.f86ET0817122@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

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

Browse pgsql-bugs by date

  From Date Subject
Next Message pgsql-bugs 2001-09-06 14:34:07 Bug #440: trigger can not find a function
Previous Message tomas 2001-09-06 13:15:26 Conditional NOTIFY is not implemented