diff options
Diffstat (limited to 'src/bin/pg_dump/pg_dump.h')
-rw-r--r-- | src/bin/pg_dump/pg_dump.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_dump.h b/src/bin/pg_dump/pg_dump.h index fa5972a55ff..e71d03604b7 100644 --- a/src/bin/pg_dump/pg_dump.h +++ b/src/bin/pg_dump/pg_dump.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.h,v 1.162 2010/01/28 23:21:12 petere Exp $ + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.h,v 1.163 2010/02/18 01:29:10 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -115,8 +115,8 @@ typedef enum DO_FDW, DO_FOREIGN_SERVER, DO_DEFAULT_ACL, - DO_BLOBS, - DO_BLOB_COMMENTS + DO_BLOB, + DO_BLOB_DATA } DumpableObjectType; typedef struct _dumpableObject @@ -443,6 +443,13 @@ typedef struct _defaultACLInfo char *defaclacl; } DefaultACLInfo; +typedef struct _blobInfo +{ + DumpableObject dobj; + char *rolname; + char *blobacl; +} BlobInfo; + /* global decls */ extern bool force_quotes; /* double-quotes for identifiers flag */ extern bool g_verbose; /* verbose flag */ |