diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2011-12-16 19:09:38 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2011-12-16 19:09:38 -0500 |
commit | a4cd6abcc901c1a8009c62a27f78696717bb8fe1 (patch) | |
tree | 5e595245b8e855b27c8b13bbc1e9a36f7fe80da8 /src/bin/pg_dump/common.c | |
parent | 4b43b48c9f05d7bfc5d20fdf53c8fb966d704312 (diff) | |
download | postgresql-a4cd6abcc901c1a8009c62a27f78696717bb8fe1.tar.gz postgresql-a4cd6abcc901c1a8009c62a27f78696717bb8fe1.zip |
Add --section option to pg_dump and pg_restore.
Valid values are --pre-data, data and post-data. The option can be
given more than once. --schema-only is equivalent to
--section=pre-data --section=post-data. --data-only is equivalent
to --section=data.
Andrew Dunstan, reviewed by Joachim Wieland and Josh Berkus.
Diffstat (limited to 'src/bin/pg_dump/common.c')
-rw-r--r-- | src/bin/pg_dump/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/common.c b/src/bin/pg_dump/common.c index d4e906ddd0c..92c73ad3c12 100644 --- a/src/bin/pg_dump/common.c +++ b/src/bin/pg_dump/common.c @@ -2,7 +2,7 @@ * * common.c * Catalog routines used by pg_dump; long ago these were shared - * by another dump tool, but not anymore. + * by another dump tool, but not anymore. * * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California |