Re: [HACKERS] PRIMARY KEY and INHERITANCE

2001-01-01 Thread Ferruccio Zamuner
From: Horst Herb <[EMAIL PROTECTED]> Date: Mon, 1 Jan 2001 10:09:52 +1100 >> create table a ( >>id serial primary key, >>something text >> ); >> >> create table b ( >>morething text >> ) inherits (a); >> >> create table c ( >>trouble int references b; >> );

Re: [HACKERS] PRIMARY KEY and INHERITANCE

2000-12-31 Thread Horst Herb
On Monday 01 January 2001 01:42, Ferruccio Zamuner wrote: > Hi, > > some months ago I've asked for a suggestion for this bug: > > create table a ( >id serial primary key, >something text > ); > > create table b ( >morething text > ) inherits (a); > > create table c ( >

Re: [HACKERS] PRIMARY KEY and INHERITANCE

2000-12-31 Thread Oliver Elphick
Ferruccio Zamuner wrote: >Hi, > >some months ago I've asked for a suggestion for this bug: > >create table a ( > id serial primary key, > something text >); > >create table b ( > morething text >) inherits (a); > >create table c ( > trouble int

[HACKERS] PRIMARY KEY and INHERITANCE

2000-12-31 Thread Ferruccio Zamuner
Hi, some months ago I've asked for a suggestion for this bug: create table a ( id serial primary key, something text ); create table b ( morething text ) inherits (a); create table c ( trouble int references b; ); NOTICE: CREATE TABLE will create implicit trigger(s