~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/bin/pg_dump/pg_backup_db.h

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      Definitions for pg_backup_db.c
 
3
 *
 
4
 *      IDENTIFICATION
 
5
 *              $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_db.h,v 1.10 2004-03-03 21:28:54 tgl Exp $
 
6
 */
 
7
 
 
8
#define BLOB_XREF_TABLE "pg_dump_blob_xref"             /* MUST be lower case */
 
9
 
 
10
extern void FixupBlobRefs(ArchiveHandle *AH, TocEntry *te);
 
11
extern int      ExecuteSqlCommand(ArchiveHandle *AH, PQExpBuffer qry, char *desc, bool use_blob);
 
12
extern int      ExecuteSqlCommandBuf(ArchiveHandle *AH, void *qry, size_t bufLen);
 
13
 
 
14
extern void CreateBlobXrefTable(ArchiveHandle *AH);
 
15
extern void CreateBlobXrefIndex(ArchiveHandle *AH);
 
16
extern void InsertBlobXref(ArchiveHandle *AH, Oid old, Oid new);
 
17
extern void StartTransaction(ArchiveHandle *AH);
 
18
extern void StartTransactionXref(ArchiveHandle *AH);
 
19
extern void CommitTransaction(ArchiveHandle *AH);
 
20
extern void CommitTransactionXref(ArchiveHandle *AH);