pgsql: Move logic related to WAL replay of Heap/Heap2 into its own file

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move logic related to WAL replay of Heap/Heap2 into its own file
Date: 2024-09-12 04:32:18
Message-ID: E1sobVB-000geQ-TW@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move logic related to WAL replay of Heap/Heap2 into its own file

This brings more clarity to heapam.c, by cleanly separating all the
logic related to WAL replay and the rest of Heap and Heap2, similarly
to other RMGRs like hash, btree, etc.

The header reorganization is also nice in heapam.c, cutting half of the
headers required.

Author: Li Yong
Reviewed-by: Sutou Kouhei, Michael Paquier
Discussion: https://postgr.es/m/EFE55E65-D7BD-4C6A-B630-91F43FD0771B@ebay.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/00c76cf21c42c17e60e73a87dea0d1b4e234d9da

Modified Files
--------------
src/backend/access/heap/Makefile | 1 +
src/backend/access/heap/heapam.c | 1339 ---------------------------------
src/backend/access/heap/heapam_xlog.c | 1339 +++++++++++++++++++++++++++++++++
src/backend/access/heap/meson.build | 1 +
src/include/access/heapam.h | 25 +
5 files changed, 1366 insertions(+), 1339 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2024-09-12 09:17:30 pgsql: Don't overwrite scan key in systable_beginscan()
Previous Message David Rowley 2024-09-12 04:02:17 pgsql: Adjust tuplestore stats API