pgsql: Issue properly WAL record for CID of first catalog tuple in mult - Mailing list pgsql-committers

From Michael Paquier
Subject pgsql: Issue properly WAL record for CID of first catalog tuple in mult
Date
Msg-id E1j6Mdq-0004J8-Dc@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Issue properly WAL record for CID of first catalog tuple in multi-insert

Multi-insert for heap is not yet used actively for catalogs, but the
code to support this case is in place for logical decoding.  The
existing code forgot to issue a XLOG_HEAP2_NEW_CID record for the first
tuple inserted, leading to failures when attempting to use multiple
inserts for catalogs at decoding time.  This commit fixes the problem by
WAL-logging the needed CID.

This is not an active bug, so no back-patch is done.

Author: Daniel Gustafsson
Discussion: https://postgr.es/m/E0D4CC67-A1CF-4DF4-991D-B3AC2EB5FAE9@yesql.se

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7d672b76bf27327dc3527dabcd8be4e2dedf430f

Modified Files
--------------
src/backend/access/heap/heapam.c | 8 ++++++++
1 file changed, 8 insertions(+)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Account explicitly for long-lived FDs that are allocated outside
Next
From: Andres Freund
Date:
Subject: pgsql: expression eval: Reduce number of steps for agg transition invoc