pgsql: In successful pg_recvlogical, end PGRES_COPY_OUT cleanly.

From: Noah Misch <noah(at)leadboat(dot)com>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: In successful pg_recvlogical, end PGRES_COPY_OUT cleanly.
Date: 2020-05-14 03:44:06
Message-ID: E1jZ4n0-0007nr-5I@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

In successful pg_recvlogical, end PGRES_COPY_OUT cleanly.

pg_recvlogical merely called PQfinish(), so the backend sent messages
after the disconnect. When that caused EPIPE in internal_flush(),
before a LogicalConfirmReceivedLocation(), the next pg_recvlogical would
repeat already-acknowledged records. Whether or not the defect causes
EPIPE, post-disconnect messages could contain an ErrorResponse that the
user should see. One properly ends PGRES_COPY_OUT by repeating
PQgetCopyData() until it returns a negative value. Augment one of the
tests to cover the case of WAL past --endpos. Back-patch to v10, where
commit 7c030783a5bd07cadffc2a1018bc33119a4c7505 first appeared. Before
that commit, pg_recvlogical never reached PGRES_COPY_OUT.

Reported by Thomas Munro.

Discussion: https://postgr.es/m/CAEepm=1MzM2Z_xNe4foGwZ1a+MO_2S9oYDq3M5D11=JDU_+0Nw@mail.gmail.com

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/357012e17f3f7d47bd276d4441c28fbcd58a2c8b

Modified Files
--------------
src/bin/pg_basebackup/pg_recvlogical.c | 34 +++++++++++++++++++++++++----
src/test/recovery/t/006_logical_decoding.pl | 7 +++++-
2 files changed, 36 insertions(+), 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Amit Kapila 2020-05-14 04:29:06 pgsql: Fix the MSVC build for versions 2015 and later.
Previous Message Tom Lane 2020-05-14 03:37:04 pgsql: Doc: split up wait_event table.