Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
5168c769
Commit
5168c769
authored
11 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
pg_restore: make help output plural for multi-enabled options
per report from Josh Kupershmidt
parent
d1981719
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bin/pg_dump/pg_restore.c
+6
-6
6 additions, 6 deletions
src/bin/pg_dump/pg_restore.c
with
6 additions
and
6 deletions
src/bin/pg_dump/pg_restore.c
+
6
−
6
View file @
5168c769
...
...
@@ -442,17 +442,17 @@ usage(const char *progname)
printf
(
_
(
" -c, --clean clean (drop) database objects before recreating
\n
"
));
printf
(
_
(
" -C, --create create the target database
\n
"
));
printf
(
_
(
" -e, --exit-on-error exit on error, default is to continue
\n
"
));
printf
(
_
(
" -I, --index=NAME restore named index
\n
"
));
printf
(
_
(
" -I, --index=NAME restore named index
es
\n
"
));
printf
(
_
(
" -j, --jobs=NUM use this many parallel jobs to restore
\n
"
));
printf
(
_
(
" -L, --use-list=FILENAME use table of contents from this file for
\n
"
" selecting/ordering output
\n
"
));
printf
(
_
(
" -n, --schema=NAME restore only objects in th
is
schema
\n
"
));
printf
(
_
(
" -n, --schema=NAME restore only objects in th
ese
schema
s
\n
"
));
printf
(
_
(
" -O, --no-owner skip restoration of object ownership
\n
"
));
printf
(
_
(
" -P, --function=NAME(args) restore named function
\n
"
));
printf
(
_
(
" -P, --function=NAME(args) restore named function
s
\n
"
));
printf
(
_
(
" -s, --schema-only restore only the schema, no data
\n
"
));
printf
(
_
(
" -S, --superuser=NAME superuser user name to use for disabling triggers
\n
"
));
printf
(
_
(
" -t, --table=NAME restore named table
(s)
\n
"
));
printf
(
_
(
" -T, --trigger=NAME restore named trigger
\n
"
));
printf
(
_
(
" -t, --table=NAME restore named table
s
\n
"
));
printf
(
_
(
" -T, --trigger=NAME restore named trigger
s
\n
"
));
printf
(
_
(
" -x, --no-privileges skip restoration of access privileges (grant/revoke)
\n
"
));
printf
(
_
(
" -1, --single-transaction restore as a single transaction
\n
"
));
printf
(
_
(
" --disable-triggers disable triggers during data-only restore
\n
"
));
...
...
@@ -460,7 +460,7 @@ usage(const char *progname)
" created
\n
"
));
printf
(
_
(
" --no-security-labels do not restore security labels
\n
"
));
printf
(
_
(
" --no-tablespaces do not restore tablespace assignments
\n
"
));
printf
(
_
(
" --section=SECTION restore named section (pre-data, data, or post-data)
\n
"
));
printf
(
_
(
" --section=SECTION restore named section
s
(pre-data, data, or post-data)
\n
"
));
printf
(
_
(
" --use-set-session-authorization
\n
"
" use SET SESSION AUTHORIZATION commands instead of
\n
"
" ALTER OWNER commands to set ownership
\n
"
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment