diff options
author | Robert Haas <rhaas@postgresql.org> | 2020-04-23 09:47:50 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2020-04-23 09:47:50 -0400 |
commit | ab7646ff92c799303b9ee70ce88b89e07dae717c (patch) | |
tree | f98314c9939d4901ab1863a5ba0d6f898e16d96d /src | |
parent | 3989dbdf1293ecc16991065a3d84857a945ea853 (diff) | |
download | postgresql-ab7646ff92c799303b9ee70ce88b89e07dae717c.tar.gz postgresql-ab7646ff92c799303b9ee70ce88b89e07dae717c.zip |
Also rename 'struct manifest_info'.
The previous commit renamed the struct's typedef, but not the struct
name itself.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/replication/backup_manifest.h | 2 | ||||
-rw-r--r-- | src/include/replication/basebackup.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/replication/backup_manifest.h b/src/include/replication/backup_manifest.h index fd614202b31..06b114f3d77 100644 --- a/src/include/replication/backup_manifest.h +++ b/src/include/replication/backup_manifest.h @@ -24,7 +24,7 @@ typedef enum manifest_option MANIFEST_OPTION_FORCE_ENCODE } backup_manifest_option; -typedef struct manifest_info +typedef struct backup_manifest_info { BufFile *buffile; pg_checksum_type checksum_type; diff --git a/src/include/replication/basebackup.h b/src/include/replication/basebackup.h index f6a7422cbc7..923a651cac3 100644 --- a/src/include/replication/basebackup.h +++ b/src/include/replication/basebackup.h @@ -14,7 +14,7 @@ #include "nodes/replnodes.h" -struct manifest_info; /* avoid including backup_manifest.h */ +struct backup_manifest_info; /* avoid including backup_manifest.h */ /* @@ -34,6 +34,6 @@ typedef struct extern void SendBaseBackup(BaseBackupCmd *cmd); extern int64 sendTablespace(char *path, char *oid, bool sizeonly, - struct manifest_info *manifest); + struct backup_manifest_info *manifest); #endif /* _BASEBACKUP_H */ |