Re: Fix race condition in pg_get_publication_tables with concurrent DROP TABLE

From: Ajin Cherian <itsajin(at)gmail(dot)com>
To: Bharath Rupireddy <bharath(dot)rupireddyforpostgres(at)gmail(dot)com>
Cc: Bertrand Drouvot <bertranddrouvot(dot)pg(at)gmail(dot)com>, shveta malik <shveta(dot)malik(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Fix race condition in pg_get_publication_tables with concurrent DROP TABLE
Date: 2026-04-29 01:42:23
Message-ID: CAFPTHDaxCW4QTQpGyjZ-Mne_Qb3fTbhr3dqg5Rz3fKPbFn8d=Q@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Wed, Apr 29, 2026 at 12:17 AM Bharath Rupireddy
<bharath(dot)rupireddyforpostgres(at)gmail(dot)com> wrote:
>
>
>
> Please find the attached v4 patch. Thank yoU!
>

One small comment. The includes need to be in alphabetical order.
injection_point.h should come after fmgroids.h

#include "utils/fmgroids.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
+#include "utils/injection_point.h"
#include "utils/syscache.h"

regards,
Ajin Cherian
Fujitsu Australia

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bharath Rupireddy 2026-04-29 01:45:00 Re: Add tests for concurrent DML retry paths in logical replication apply
Previous Message Chao Li 2026-04-29 01:28:45 Re: Fix race condition in XLogLogicalInfo and ProcSignal initialization.