aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_backup.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-08-01 18:21:44 +0000
committerBruce Momjian <bruce@momjian.us>2006-08-01 18:21:44 +0000
commitc61607bd52d84bc543f451ea27c22e8212a48b24 (patch)
treebfce21fb37f64ba0c004292b73c414343a4b4032 /src/bin/pg_dump/pg_backup.h
parent6d0f5ea574db508c699168d4a68d0f1080e3400b (diff)
downloadpostgresql-c61607bd52d84bc543f451ea27c22e8212a48b24.tar.gz
postgresql-c61607bd52d84bc543f451ea27c22e8212a48b24.zip
Add pg_dump -X no-data-for-failed-tables option to suppress loading data
if table creation failed (the table already exists). Martin Pitt
Diffstat (limited to 'src/bin/pg_dump/pg_backup.h')
-rw-r--r--src/bin/pg_dump/pg_backup.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_backup.h b/src/bin/pg_dump/pg_backup.h
index 6f81b8deecc..426b5110fbd 100644
--- a/src/bin/pg_dump/pg_backup.h
+++ b/src/bin/pg_dump/pg_backup.h
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup.h,v 1.41 2006/07/14 14:52:26 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup.h,v 1.42 2006/08/01 18:21:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -109,6 +109,7 @@ typedef struct _restoreOptions
char *pghost;
char *username;
int ignoreVersion;
+ int noDataForFailedTables;
int requirePassword;
int exit_on_error;