Re: Bug #755: Error on create a new sequence by using the create

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: sl(at)scrooge(dot)dk, pgsql-bugs(at)postgresql(dot)org
Subject: Re: Bug #755: Error on create a new sequence by using the create
Date: 2002-09-03 21:11:05
Message-ID: 200209032111.g83LB5k28187@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


7.3 will have 64 byte indentifiers, which should make this less likely.

We could randomly pick non-conflicting names, but then the serial names
would not be predicable, and because those are used by nextval(), etc,
it would be bad.

---------------------------------------------------------------------------

pgsql-bugs(at)postgresql(dot)org wrote:
> Sren Laursen (sl(at)scrooge(dot)dk) reports a bug with a severity of 2
> The lower the number the more severe it is.
>
> Short Description
> Error on create a new sequence by using the create table command.
>
> Long Description
> In postgresql 7.1 and 7.2.1:
>
> Then using a statement like:
> CREATE TABLE longtablename(
> longtablenamenr serial NOT NULL UNIQUE PRIMARY KEY,....
>
> )
>
> and later a
> CREATE TABLE longtablenamestep(
> longtablenamestepnr serial NOT NULL UNIQUE PRIMARY KEY,....
>
> )
>
> I get an error on creating the last table. This is because the new sequence is named with the same name as the one used by the first table. The create statement is then terminated and no table is created. I would have to create the sequence my self and then create the table using statements like:
> not null default nextval('"longtablename_longtablename_sq1"'::text).
>
> Regards,
>
> Soeren Laursen
>
>
> Sample Code
>
>
> No file was uploaded with this report
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Rod Taylor 2002-09-03 21:15:10 Re: Bug #755: Error on create a new sequence by using the
Previous Message Guoben Li 2002-09-03 21:10:40 Internal compiler error in `layout_type' at stor-layout.c