diff options
author | Nathan Bossart | 2023-09-06 00:02:06 +0000 |
---|---|---|
committer | Nathan Bossart | 2023-09-06 00:02:06 +0000 |
commit | f39b265808bde307953dd4bd46dca1f58f0988e8 (patch) | |
tree | 142201a17026ae2a4bd65905e1012f68d68372cb /src/include | |
parent | 119c23eb9819213551cbe7e7665c8b493c59ceee (diff) |
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
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/common/file_utils.h | 4 | ||||
-rw-r--r-- | src/include/storage/fd.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/common/file_utils.h b/src/include/common/file_utils.h index b7efa1226d6..dd1532bcb06 100644 --- a/src/include/common/file_utils.h +++ b/src/include/common/file_utils.h @@ -46,4 +46,8 @@ extern ssize_t pg_pwritev_with_retry(int fd, extern ssize_t pg_pwrite_zeros(int fd, size_t size, off_t offset); +/* Filename components */ +#define PG_TEMP_FILES_DIR "pgsql_tmp" +#define PG_TEMP_FILE_PREFIX "pgsql_tmp" + #endif /* FILE_UTILS_H */ diff --git a/src/include/storage/fd.h b/src/include/storage/fd.h index 6791a406fc1..aea30c06226 100644 --- a/src/include/storage/fd.h +++ b/src/include/storage/fd.h @@ -195,8 +195,4 @@ extern int durable_unlink(const char *fname, int elevel); extern void SyncDataDirectory(void); extern int data_sync_elevel(int elevel); -/* Filename components */ -#define PG_TEMP_FILES_DIR "pgsql_tmp" -#define PG_TEMP_FILE_PREFIX "pgsql_tmp" - #endif /* FD_H */ |