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
2273a503
Commit
2273a503
authored
May 18, 2012
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Realign some --help output to have better spacing between columns
parent
1d27dcf5
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
124 additions
and
127 deletions
+124
-127
src/backend/main/main.c
src/backend/main/main.c
+37
-37
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+37
-37
src/bin/pg_dump/pg_dumpall.c
src/bin/pg_dump/pg_dumpall.c
+25
-25
src/bin/pg_dump/pg_restore.c
src/bin/pg_dump/pg_restore.c
+25
-28
No files found.
src/backend/main/main.c
View file @
2273a503
src/bin/pg_dump/pg_dump.c
View file @
2273a503
src/bin/pg_dump/pg_dumpall.c
View file @
2273a503
src/bin/pg_dump/pg_restore.c
View file @
2273a503
...
@@ -450,18 +450,15 @@ usage(const char *progname)
...
@@ -450,18 +450,15 @@ usage(const char *progname)
" selecting/ordering output
\n
"
));
" selecting/ordering output
\n
"
));
printf
(
_
(
" -n, --schema=NAME restore only objects in this schema
\n
"
));
printf
(
_
(
" -n, --schema=NAME restore only objects in this schema
\n
"
));
printf
(
_
(
" -O, --no-owner skip restoration of object ownership
\n
"
));
printf
(
_
(
" -O, --no-owner skip restoration of object ownership
\n
"
));
printf
(
_
(
" -P, --function=NAME(args)
\n
"
printf
(
_
(
" -P, --function=NAME(args) restore named function
\n
"
));
" restore named function
\n
"
));
printf
(
_
(
" -s, --schema-only restore only the schema, no data
\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
(
_
(
" -S, --superuser=NAME superuser user name to use for disabling triggers
\n
"
));
printf
(
_
(
" -t, --table=NAME restore named table
\n
"
));
printf
(
_
(
" -t, --table=NAME restore named table
\n
"
));
printf
(
_
(
" -T, --trigger=NAME restore named trigger
\n
"
));
printf
(
_
(
" -T, --trigger=NAME restore named trigger
\n
"
));
printf
(
_
(
" -x, --no-privileges skip restoration of access privileges (grant/revoke)
\n
"
));
printf
(
_
(
" -x, --no-privileges skip restoration of access privileges (grant/revoke)
\n
"
));
printf
(
_
(
" -1, --single-transaction
\n
"
printf
(
_
(
" -1, --single-transaction restore as a single transaction
\n
"
));
" restore as a single transaction
\n
"
));
printf
(
_
(
" --disable-triggers disable triggers during data-only restore
\n
"
));
printf
(
_
(
" --disable-triggers disable triggers during data-only restore
\n
"
));
printf
(
_
(
" --no-data-for-failed-tables
\n
"
printf
(
_
(
" --no-data-for-failed-tables do not restore data of tables that could not be
\n
"
" do not restore data of tables that could not be
\n
"
" created
\n
"
));
" created
\n
"
));
printf
(
_
(
" --no-security-labels do not restore security labels
\n
"
));
printf
(
_
(
" --no-security-labels do not restore security labels
\n
"
));
printf
(
_
(
" --no-tablespaces do not restore tablespace assignments
\n
"
));
printf
(
_
(
" --no-tablespaces do not restore tablespace assignments
\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