Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
32695413
Commit
32695413
authored
Jan 06, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make pg_dump and pg_dumpall --clean options match the SGML docs, for consistency.
parent
e2286240
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+2
-2
src/bin/pg_dump/pg_dumpall.c
src/bin/pg_dump/pg_dumpall.c
+2
-2
No files found.
src/bin/pg_dump/pg_dump.c
View file @
32695413
...
...
@@ -12,7 +12,7 @@
* by PostgreSQL
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.51
2 2009/01/05 16:54:37 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.51
3 2009/01/06 18:01:57 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -803,7 +803,7 @@ help(const char *progname)
printf
(
_
(
"
\n
Options controlling the output content:
\n
"
));
printf
(
_
(
" -a, --data-only dump only the data, not the schema
\n
"
));
printf
(
_
(
" -b, --blobs include large objects in dump
\n
"
));
printf
(
_
(
" -c, --clean clean (drop)
schema prior to create
\n
"
));
printf
(
_
(
" -c, --clean clean (drop)
database objects before recreating
\n
"
));
printf
(
_
(
" -C, --create include commands to create database in dump
\n
"
));
printf
(
_
(
" -d, --inserts dump data as INSERT commands, rather than COPY
\n
"
));
printf
(
_
(
" -D, --column-inserts dump data as INSERT commands with column names
\n
"
));
...
...
src/bin/pg_dump/pg_dumpall.c
View file @
32695413
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.11
1 2009/01/05 16:54:37 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.11
2 2009/01/06 18:01:57 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -500,7 +500,7 @@ help(void)
" fail after waiting TIMEOUT for a table lock
\n
"
));
printf
(
_
(
"
\n
Options controlling the output content:
\n
"
));
printf
(
_
(
" -a, --data-only dump only the data, not the schema
\n
"
));
printf
(
_
(
" -c, --clean clean (drop) databases
prior to create
\n
"
));
printf
(
_
(
" -c, --clean clean (drop) databases
before recreating
\n
"
));
printf
(
_
(
" -d, --inserts dump data as INSERT, rather than COPY, commands
\n
"
));
printf
(
_
(
" -D, --column-inserts dump data as INSERT commands with column names
\n
"
));
printf
(
_
(
" -g, --globals-only dump only global objects, no databases
\n
"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment