summaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/pg_backup.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-06-09 17:56:51 +0000
committerBruce Momjian <bruce@momjian.us>2005-06-09 17:56:51 +0000
commitebc8649892d02a9c6991e00d3e273670ca46fe56 (patch)
tree051b445e5864d14fb44d16fed629cdc5d0688a1e /src/bin/pg_dump/pg_backup.h
parent4d0e7b4aace5cdad7137d6efe71bcad4015c2518 (diff)
downloadpostgresql-ebc8649892d02a9c6991e00d3e273670ca46fe56.tar.gz
Since I needed this feature badly, I added the -n / --schema switch to
pg_restore. It restores the given schemaname only. It can be used in conjunction with the -t and other switches to make the selection very fine grained. Richard van den Bergg, CISSP
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 d606024f45..6a04cf14b3 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.34 2004/11/06 19:36:01 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup.h,v 1.35 2005/06/09 17:56:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -98,6 +98,7 @@ typedef struct _restoreOptions
char *indexNames;
char *functionNames;
char *tableNames;
+ char *schemaNames;
char *triggerNames;
int useDB;