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;
>> );
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 (
>
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
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