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
66843265
Commit
66843265
authored
Dec 28, 2011
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Indicate default format in --help output of pg_dump and pg_basebackup
parent
037a8270
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_basebackup.c
+1
-1
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+2
-1
No files found.
src/bin/pg_basebackup/pg_basebackup.c
View file @
66843265
...
...
@@ -105,7 +105,7 @@ usage(void)
printf
(
_
(
" %s [OPTION]...
\n
"
),
progname
);
printf
(
_
(
"
\n
Options controlling the output:
\n
"
));
printf
(
_
(
" -D, --pgdata=DIRECTORY receive base backup into directory
\n
"
));
printf
(
_
(
" -F, --format=p|t output format (plain, tar)
\n
"
));
printf
(
_
(
" -F, --format=p|t output format (plain
(default)
, tar)
\n
"
));
printf
(
_
(
" -x, --xlog=fetch|stream include required WAL files in backup
\n
"
));
printf
(
_
(
" -z, --gzip compress tar output
\n
"
));
printf
(
_
(
" -Z, --compress=0-9 compress tar output with given compression level
\n
"
));
...
...
src/bin/pg_dump/pg_dump.c
View file @
66843265
...
...
@@ -860,7 +860,8 @@ help(const char *progname)
printf
(
_
(
"
\n
General options:
\n
"
));
printf
(
_
(
" -f, --file=FILENAME output file or directory name
\n
"
));
printf
(
_
(
" -F, --format=c|d|t|p output file format (custom, directory, tar, plain text)
\n
"
));
printf
(
_
(
" -F, --format=c|d|t|p output file format (custom, directory, tar,
\n
"
" plain text (default))
\n
"
));
printf
(
_
(
" -v, --verbose verbose mode
\n
"
));
printf
(
_
(
" -Z, --compress=0-9 compression level for compressed formats
\n
"
));
printf
(
_
(
" --lock-wait-timeout=TIMEOUT fail after waiting TIMEOUT for a table lock
\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