diff options
Diffstat (limited to 'src/bin/pg_dump/pg_backup.h')
-rw-r--r-- | src/bin/pg_dump/pg_backup.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/bin/pg_dump/pg_backup.h b/src/bin/pg_dump/pg_backup.h index 8168cfffedd..89264885b14 100644 --- a/src/bin/pg_dump/pg_backup.h +++ b/src/bin/pg_dump/pg_backup.h @@ -69,6 +69,14 @@ typedef enum _teSection SECTION_POST_DATA /* stuff to be processed after data */ } teSection; +typedef enum +{ + DUMP_PRE_DATA = 0x01, + DUMP_DATA = 0x02, + DUMP_POST_DATA = 0x04, + DUMP_UNSECTIONED = 0xff +} DumpSections; + /* * We may want to have some more user-readable data, but in the mean * time this gives us some abstraction and type checking. @@ -111,6 +119,7 @@ typedef struct _restoreOptions int dropSchema; char *filename; int schemaOnly; + int dumpSections; int verbose; int aclsSkip; int tocSummary; |