Re: ALTER TABLE RENAME column

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: ALTER TABLE RENAME column
Дата
Msg-id 13875.1163777855@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: ALTER TABLE RENAME column  ("Mario Weilguni" <mario.weilguni@icomedias.com>)
Ответы Re: ALTER TABLE RENAME column  ("Jonah H. Harris" <jonah.harris@gmail.com>)
Список pgsql-hackers
"Mario Weilguni" <mario.weilguni@icomedias.com> writes:
> IMO this should do:
> Alter sequence foo_bar_seq rename to foo_baf_seq;
> Alter table foo alter baf set default nextval('foo_baf_seq')

No, it should not, because that risks breaking other references to the
sequence (eg, in user-written functions).  If the user is feeling that
he wants consistency, he can rename the sequence himself and take
responsibility for any side-effects on his code.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: "Mario Weilguni"
Дата:
Сообщение: Re: ALTER TABLE RENAME column
Следующее
От: "Jonah H. Harris"
Дата:
Сообщение: Re: ALTER TABLE RENAME column