agora inbox for pgsql-committers@postgresql.org  
help / color / mirror / Atom feed
From: Fujii Masao <fujii@postgresql.org>
To: pgsql-committers@lists.postgresql.org
Subject: pgsql: Handle concurrent sequence drops during synchronization
Date: Thu, 16 Jul 2026 15:52:29 +0000
Message-ID: <E1wkONw-000TvZ-2Y@gemulon.postgresql.org> (raw)

Handle concurrent sequence drops during synchronization

Commit d4a657b0a4d added a call to has_sequence_privilege() while
fetching sequence information from the publisher, so that
publisher-side permission failures could be distinguished from missing
sequences. It also assumed that has_sequence_privilege() could never
return NULL, and asserted accordingly.

However, that assumption was incorrect. If a sequence is dropped after
the synchronization worker collects its metadata but while fetching the
sequence information, has_sequence_privilege() can return NULL.
This can trigger the assertion failure. This was also reported in
a buildfarm failure on member culicidae.

Fix this by treating a NULL result from has_sequence_privilege() as
indicating that the sequence was dropped concurrently, and report it as
a missing sequence instead of asserting that the result is never NULL.

Reported-by: Noah Misch <noah@leadboat.com>
Author: Vignesh C <vignesh21@gmail.com>
Reviewed-by: Hayato Kuroda <kuroda.hayato@fujitsu.com>
Reviewed-by: Zsolt Parragi <zsolt.parragi@percona.com>
Reviewed-by: Fujii Masao <masao.fujii@gmail.com>
Discussion: https://postgr.es/m/20260710045217.f0.noahmisch@microsoft.com
Discussion: https://postgr.es/m/CALDaNm2fHGLeiQKj0r6OG7N9QeayxSmpLrWYJRyt4dL_m3VRWw@mail.gmail.com
Backpatch-through: 19

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/55f518684895bfe43e667acf59284b49707ee685

Modified Files
--------------
src/backend/replication/logical/sequencesync.c | 15 +++++--
src/test/subscription/t/036_sequences.pl       | 56 +++++++++++++++++++++++++-
2 files changed, 67 insertions(+), 4 deletions(-)



view thread (2+ messages)  latest in thread

Message-ID: <E1wkONw-000TvZ-2Y@gemulon.postgresql.org>
Permalink:  ../E1wkONw-000TvZ-2Y@gemulon.postgresql.org/
Also on:    postgresql.org/message-id/E1wkONw-000TvZ-2Y@gemulon.postgresql.org

reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Reply to all the recipients using the --to and --cc options:
  reply via email

  To: pgsql-committers@postgresql.org
  Cc: fujii@postgresql.org, pgsql-committers@lists.postgresql.org
  Subject: Re: pgsql: Handle concurrent sequence drops during synchronization
  In-Reply-To: <E1wkONw-000TvZ-2Y@gemulon.postgresql.org>

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox