Re: BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column
Дата
Msg-id 129.1179789706@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column  ("Philip Ives" <phil@ivesdigital.com>)
Список 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 по дате отправления:

Предыдущее
От: "Philip Ives"
Дата:
Сообщение: BUG #3295: pg_get_serial_sequence returns wrong sequence name for a serial column
Следующее
От: Klint Gore
Дата:
Сообщение: Re: BUG #3277: error occurs between different versions