Re: Problem with logical replication

Поиск
Список
Период
Сортировка
От Euler Taveira
Тема Re: Problem with logical replication
Дата
Msg-id CAH503wDzL6Od8QVYHtWdp2UdPZVRJbuphR7V79ckbOK14uXyXw@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Problem with logical replication  (Masahiko Sawada <masahiko.sawada@2ndquadrant.com>)
Ответы Re: Problem with logical replication  (Dilip Kumar <dilipbalaut@gmail.com>)
Re: Problem with logical replication  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On Tue, 12 May 2020 at 06:36, Masahiko Sawada <masahiko.sawada@2ndquadrant.com> wrote:
On Mon, 11 May 2020 at 16:28, Michael Paquier <michael@paquier.xyz> wrote:
>
> On Sun, May 10, 2020 at 07:08:03PM -0300, Euler Taveira wrote:
> > I attached a patch with the described solution. I also included a test that
> > covers this scenario.
>
> -   Assert(RelationGetReplicaIndex(rel) == RelationGetRelid(idxrel));
> +   Assert(GetRelationIdentityOrPK(rel) == RelationGetRelid(idxrel));
>
> Not much a fan of adding a routine to relcache.c to do the work of two
> routines already present, so I think that we had better add an extra
> condition based on RelationGetPrimaryKeyIndex, and give up on
> GetRelationIdentityOrPK() in execReplication.c.

Although, I think this solution is fragile, I updated the patch accordingly.
(When/If someone changed GetRelationIdentityOrPK() it will break this assert)


In any case, it seems to me that the comment of
build_replindex_scan_key needs to be updated.

 * This is not generic routine, it expects the idxrel to be replication
 * identity of a rel and meet all limitations associated with that.

It is implicit that a primary key can be a replica identity so I think this
comment is fine.


--
Euler Taveira                 http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
Вложения

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

Предыдущее
От: Peter Geoghegan
Дата:
Сообщение: Re: new heapcheck contrib module
Следующее
От: Tomas Vondra
Дата:
Сообщение: Re: WIP: BRIN multi-range indexes