diff options
Diffstat (limited to 'src/bin/pg_dump/pg_backup_db.h')
-rw-r--r-- | src/bin/pg_dump/pg_backup_db.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup_db.h b/src/bin/pg_dump/pg_backup_db.h index 93970b5a918..a1a84825e41 100644 --- a/src/bin/pg_dump/pg_backup_db.h +++ b/src/bin/pg_dump/pg_backup_db.h @@ -10,7 +10,9 @@ #include "pg_backup_archiver.h" -extern int ExecuteSqlCommandBuf(ArchiveHandle *AH, void *qry, size_t bufLen); +extern int ExecuteSqlCommandBuf(ArchiveHandle *AH, const char *buf, size_t bufLen); + +extern void EndDBCopyMode(ArchiveHandle *AH, struct _tocEntry * te); extern void StartTransaction(ArchiveHandle *AH); extern void CommitTransaction(ArchiveHandle *AH); |