1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-03 00:26:59 +02:00

Ignore backup_manifest in PG13.

This file is created by pg_basebackup so might be in the data directory if the cluster was restored from a pg_basebackup backup. Also exclude backup_manifest.tmp since it is possible to find that in the backup directory.
This commit is contained in:
David Steele
2020-09-14 10:15:40 -04:00
committed by GitHub
parent fc77c51182
commit 8dce7bbb60
4 changed files with 36 additions and 3 deletions

View File

@ -16,6 +16,8 @@ Defines for various Postgres paths and files
***********************************************************************************************************************************/
#define PG_FILE_BACKUPLABEL "backup_label"
#define PG_FILE_BACKUPLABELOLD "backup_label.old"
#define PG_FILE_BACKUPMANIFEST "backup_manifest"
#define PG_FILE_BACKUPMANIFEST_TMP "backup_manifest.tmp"
#define PG_FILE_PGCONTROL "pg_control"
#define PG_FILE_PGFILENODEMAP "pg_filenode.map"
#define PG_FILE_PGINTERNALINIT "pg_internal.init"