Re: Sequences and inheritance - Mailing list pgsql-general

From Einar Karttunen
Subject Re: Sequences and inheritance
Date
Msg-id Pine.LNX.4.33.0107311630450.20135-100000@melkinpaasi.cs.Helsinki.FI
Whole thread Raw
In response to Sequences and inheritance  (Bruce Richardson <brichardson@lineone.net>)
Responses Re: Sequences and inheritance  (brichardson@lineone.net (Bruce Richardson))
List pgsql-general
On Tue, 31 Jul 2001, Bruce Richardson wrote:

> If I have a set of tables and I set their primary keys all to the same
> sequence, as in
>
> create sequence common_seq;
>
> create table alpha (
>     ID    integer primary key default nextval('common_seq),
>     other_field text
> );
>
> create table beta (
>     ID    integer primary key default nextval('common_seq),
>     other_field real
> );
> create table gamma (
>     ID    integer primary key default nextval('common_seq),
>     other_field oid
> );
>
> Would this guarantee that each value of ID in any row of any of the
> tables would be unique amongst all of them?
yes


> Would I get the same effect by creating a table like this:
>
> create table common (
>     ID     serial primary key
> );
>
> and then having alpha, beta and gamma inherit from it?
>
no. Primary key constraints are currently not inherited. See the todo-list
for more details.

- Einar Karttunen



pgsql-general by date:

Previous
From: Bruce Richardson
Date:
Subject: Sequences and inheritance
Next
From: Bernie Holmes
Date:
Subject: Getting Primary * Foreign Key Information?