pgsql: Move PG_TEMP_FILE* macros to file_utils.h.

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move PG_TEMP_FILE* macros to file_utils.h.
Date: 2023-09-06 00:03:00
Message-ID: E1qdg0a-002ae1-9k@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move PG_TEMP_FILE* macros to file_utils.h.

Presently, frontend code that needs to use these macros must either
include storage/fd.h, which declares several frontend-unsafe
functions, or duplicate the macros. This commit moves these macros
to common/file_utils.h, which is safe for both frontend and backend
code. Consequently, we can also remove the duplicated macros in
pg_checksums and stop including storage/fd.h in pg_rewind.

Reviewed-by: Michael Paquier
Discussion: https://postgr.es/m/ZOP5qoUualu5xl2Z%40paquier.xyz

Branch
------
master

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

Modified Files
--------------
src/backend/backup/basebackup.c | 2 +-
src/backend/postmaster/postmaster.c | 1 +
src/backend/storage/file/fileset.c | 1 +
src/bin/pg_checksums/pg_checksums.c | 10 ----------
src/bin/pg_rewind/filemap.c | 2 +-
src/include/common/file_utils.h | 4 ++++
src/include/storage/fd.h | 4 ----
7 files changed, 8 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-09-06 01:07:40 pgsql: Use more consistent names for wait event objects and types
Previous Message Nathan Bossart 2023-09-05 20:59:44 pgsql: Replace known_assigned_xids_lck with memory barriers.