Re: PostgreSQL with BDR. Problems when adding a sequence in a table column

Поиск
Список
Период
Сортировка
От Greg Spiegelberg
Тема Re: PostgreSQL with BDR. Problems when adding a sequence in a table column
Дата
Msg-id CAEtnbpUz8M37f6Gus1vnTy3r-cH4b_q2ohbVNr8_dpjkt8064Q@mail.gmail.com
обсуждение исходный текст
Ответ на PostgreSQL with BDR. Problems when adding a sequence in a table column  ("Ruth Melendo" <rmelendo@teltronic.es>)
Ответы Re: PostgreSQL with BDR. Problems when adding a sequence in a table column
Список pgsql-admin
Hi Ruth,

You need to create the sequence first USING BDR then alter the table setting DEFAULT nextval('..._seq').

CREATE SEQUENCE my_id_seq USING BDR;

Make sure your table has a primary key for BDR.

HTH.
-Greg

On Mon, Mar 2, 2015 at 3:05 AM, Ruth Melendo <rmelendo@teltronic.es> wrote:

Hi,

 

How can I fix this in a database with BDR?

 

... ALTER TABLE … ADD COLUMN …. DEFAULT may only affect UNLOGGED or TEMPORARY

tables when BDR is active; test_table is a regular table

 

This error happens when trying to add a column to a table with a sequence.

 

Thanks in advance!

 

Ruth Patricia Melendo Ventura

Software Engineer

TELTRONIC, S.A.U.

T: +34 976 465656   Ext. 179

F: +34 976 465722

www.teltronic.es

Logo40

 


Вложения

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

Предыдущее
От: Oleksandr Kylymnychenko
Дата:
Сообщение: Re: Passing password in psql command
Следующее
От: "Ruth Melendo"
Дата:
Сообщение: Re: PostgreSQL with BDR. Problems when adding a sequence in a table column