Force a checkpoint in CREATE DATABASE before starting to copy the files,
[PostgreSQL.git] / src / bin / pg_dump / pg_backup_db.h
blobf3f41d99ca047182dbb92898f4cab2e7ac82fb7c
1 /*
2 * Definitions for pg_backup_db.c
4 * IDENTIFICATION
5 * $PostgreSQL$
6 */
8 #ifndef PG_BACKUP_DB_H
9 #define PG_BACKUP_DB_H
11 #include "pg_backup_archiver.h"
13 extern int ExecuteSqlCommandBuf(ArchiveHandle *AH, void *qry, size_t bufLen);
15 extern void StartTransaction(ArchiveHandle *AH);
16 extern void CommitTransaction(ArchiveHandle *AH);
18 #endif