Re: changes to table creation syntax in 7.1.2?

From: Jason Earl <jdearl(at)yahoo(dot)com>
To: Jayson Callaway <jayson(dot)callaway(at)iona(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: changes to table creation syntax in 7.1.2?
Date: 2001-08-29 20:34:47
Message-ID: 20010829203447.73191.qmail@web10008.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

It looks like it works here :(. Do you have an error
message?

processdata=# select version();
version

---------------------------------------------------------------
PostgreSQL 7.1.2 on i686-pc-linux-gnu, compiled by
GCC 2.95.4
(1 row)

processdata=# CREATE TABLE category
processdata-# (
processdata(# uid int4 PRIMARY KEY,
processdata(# description text NOT NULL,
processdata(# parent int4 NULL REFERENCES
category(uid)
processdata(# )
processdata-#
processdata-# ;
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit
index 'category_pkey' for table 'category'
NOTICE: CREATE TABLE will create implicit trigger(s)
for FOREIGN KEY check(s)
CREATE

--- Jayson Callaway <jayson(dot)callaway(at)iona(dot)com> wrote:
> In postgres 7.0.x I had some working code that
> lookes something like:
>
> CREATE TABLE category
> (
> uid int4 PRIMARY KEY,
> description text NOT NULL,
> parent int4 NULL REFERENCES category(uid)
> )
>
> After upgrading to postgres 7.1.2 however this
> syntax is not accepted
> anymore. I receive an error that says it can not
> create the reference
> because the table category does not exist.
>
> How do I setup this type of reference structure in
> 7.1.2? Did the syntax
> change?
>
> I am running under Linux.
> --
> Jayson Callaway
>
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to
majordomo(at)postgresql(dot)org

__________________________________________________
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
http://im.yahoo.com

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Jari Aalto 2001-08-29 21:26:40 GRANT ALL ON TO GROUP failure
Previous Message Stephan Szabo 2001-08-29 18:24:56 Re: changes to table creation syntax in 7.1.2?