pgsql: Add redo LSN to pgstats files

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add redo LSN to pgstats files
Date: 2024-08-01 16:59:02
Message-ID: E1sZZ8o-002DwB-AK@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add redo LSN to pgstats files

This is used in the startup process to check that the pgstats file we
are reading includes the redo LSN referring to the shutdown checkpoint
where it has been written. The redo LSN in the pgstats file needs to
match with what the control file has.

This is intended to be used for an upcoming change that will extend the
write of the stats file to happen during checkpoints, rather than only
shutdown sequences.

Bump PGSTAT_FILE_FORMAT_ID.

Reviewed-by: Bertrand Drouvot
Discussion: https://postgr.es/m/Zp8o6_cl0KSgsnvS@paquier.xyz

Branch
------
master

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

Modified Files
--------------
src/backend/access/transam/xlog.c | 2 +-
src/backend/utils/activity/pgstat.c | 41 +++++++++++++++++++++++++++++--------
src/include/pgstat.h | 5 +++--
3 files changed, 36 insertions(+), 12 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2024-08-01 19:51:21 pgsql: Switch PgStat_Kind from an enum to a uint32 type
Previous Message Peter Eisentraut 2024-08-01 11:33:40 pgsql: Convert some extern variables to static, Windows code