pgsql: Move SnapBuild and SnapBuildOnDisk structs to snapshot_internal. - Mailing list pgsql-committers

From Masahiko Sawada
Subject pgsql: Move SnapBuild and SnapBuildOnDisk structs to snapshot_internal.
Date
Msg-id E1t0VIt-000rQ0-5N@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Move SnapBuild and SnapBuildOnDisk structs to snapshot_internal.h.

This commit moves the definitions of the SnapBuild and SnapBuildOnDisk
structs, related to logical snapshots, to the snapshot_internal.h
file. This change allows external tools, such as
pg_logicalinspect (with an upcoming patch), to access and utilize the
contents of logical snapshots.

Author: Bertrand Drouvot
Reviewed-by: Amit Kapila, Shveta Malik, Peter Smith
Discussion: https://postgr.es/m/ZscuZ92uGh3wm4tW%40ip-10-97-1-34.eu-west-3.compute.internal

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/e2fd615ecc177493b9a961a640ec0dcc4a25755c

Modified Files
--------------
src/backend/replication/logical/snapbuild.c  | 175 +-----------------------
src/include/replication/snapbuild.h          |   2 +-
src/include/replication/snapbuild_internal.h | 196 +++++++++++++++++++++++++++
3 files changed, 198 insertions(+), 175 deletions(-)


pgsql-committers by date:

Previous
From: Alexander Korotkov
Date:
Subject: Re: pgsql: Create functions pg_set_relation_stats, pg_clear_relation_stats.
Next
From: Masahiko Sawada
Date:
Subject: pgsql: Add contrib/pg_logicalinspect.