diff options
| author | Robert Haas | 2019-09-19 20:16:00 +0000 |
|---|---|---|
| committer | Robert Haas | 2019-12-05 19:06:16 +0000 |
| commit | 778152c0e7134f4eb9dd035a1d085d89ff33f411 (patch) | |
| tree | 0e802202679d6b4b4ed44731a3969ca420a6afc0 /src/include/replication/basebackup.h | |
| parent | 52dfa81d409efc86be3c36be0ac0de474a0a02ad (diff) | |
POC of backup manifest with file names, sizes, timestamps, checksums.manifest
Diffstat (limited to 'src/include/replication/basebackup.h')
| -rw-r--r-- | src/include/replication/basebackup.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/replication/basebackup.h b/src/include/replication/basebackup.h index 503a5b9f0b..8fe0136fce 100644 --- a/src/include/replication/basebackup.h +++ b/src/include/replication/basebackup.h @@ -12,6 +12,7 @@ #ifndef _BASEBACKUP_H #define _BASEBACKUP_H +#include "lib/stringinfo.h" #include "nodes/replnodes.h" /* @@ -31,6 +32,7 @@ typedef struct extern void SendBaseBackup(BaseBackupCmd *cmd); -extern int64 sendTablespace(char *path, bool sizeonly); +extern int64 sendTablespace(char *path, char *oid, bool sizeonly, + StringInfo manifest); #endif /* _BASEBACKUP_H */ |
