Re: BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column
Date
Msg-id 129.1179789706@sss.pgh.pa.us
Whole thread Raw
In response to BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column  ("Philip Ives" <phil@ivesdigital.com>)
List pgsql-bugs
"Philip Ives" <phil@ivesdigital.com> writes:
> pg_get_serial_sequence doesn't return the correct sequence name and returns
> a null.

Can you provide a reproducible test case for this?

The example you give looks suspiciously like the column was not created
using the SERIAL notation, but through some hand approximation to that.
pg_get_serial_sequence() only works for actual SERIAL columns, because
it looks for a pg_depend entry that's made by SERIAL but not by just
creating a column that happens to involve a nextval() default.

As of 8.2 there's an ALTER SEQUENCE OWNED BY command that you can use
to reproduce this side-effect of SERIAL, but in prior releases there's
no way, unless you're brave enough to insert the pg_depend entry by
hand.

            regards, tom lane

pgsql-bugs by date:

Previous
From: "Philip Ives"
Date:
Subject: BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column
Next
From: Klint Gore
Date:
Subject: Re: BUG #3277: error occurs between different versions