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
2ee3a720
Commit
2ee3a720
authored
Dec 03, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust help message for --no-owner, per Alvaro Herrera.
parent
2254d4ef
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
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
src/bin/pg_dump/pg_restore.c
src/bin/pg_dump/pg_restore.c
+2
-2
No files found.
src/bin/pg_dump/pg_dump.c
View file @
2ee3a720
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
* by PostgreSQL
* by PostgreSQL
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.39
3 2004/11/27 18:51:06
tgl Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.39
4 2004/12/03 18:48:19
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -682,7 +682,7 @@ help(const char *progname)
...
@@ -682,7 +682,7 @@ help(const char *progname)
printf
(
_
(
" -D, --column-inserts dump data as INSERT commands with column names
\n
"
));
printf
(
_
(
" -D, --column-inserts dump data as INSERT commands with column names
\n
"
));
printf
(
_
(
" -n, --schema=SCHEMA dump the named schema only
\n
"
));
printf
(
_
(
" -n, --schema=SCHEMA dump the named schema only
\n
"
));
printf
(
_
(
" -o, --oids include OIDs in dump
\n
"
));
printf
(
_
(
" -o, --oids include OIDs in dump
\n
"
));
printf
(
_
(
" -O, --no-owner
do not output commands to set
object ownership
\n
"
printf
(
_
(
" -O, --no-owner
skip restoration of
object ownership
\n
"
" in plain text format
\n
"
));
" in plain text format
\n
"
));
printf
(
_
(
" -s, --schema-only dump only the schema, no data
\n
"
));
printf
(
_
(
" -s, --schema-only dump only the schema, no data
\n
"
));
printf
(
_
(
" -S, --superuser=NAME specify the superuser user name to use in
\n
"
printf
(
_
(
" -S, --superuser=NAME specify the superuser user name to use in
\n
"
...
...
src/bin/pg_dump/pg_dumpall.c
View file @
2ee3a720
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
*
*
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.5
5 2004/11/27 18:51:06
tgl Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.5
6 2004/12/03 18:48:19
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -349,7 +349,7 @@ help(void)
...
@@ -349,7 +349,7 @@ help(void)
printf
(
_
(
" -D, --column-inserts dump data as INSERT commands with column names
\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
"
));
printf
(
_
(
" -g, --globals-only dump only global objects, no databases
\n
"
));
printf
(
_
(
" -o, --oids include OIDs in dump
\n
"
));
printf
(
_
(
" -o, --oids include OIDs in dump
\n
"
));
printf
(
_
(
" -O, --no-owner
do not output commands to set
object ownership
\n
"
));
printf
(
_
(
" -O, --no-owner
skip restoration of
object ownership
\n
"
));
printf
(
_
(
" -s, --schema-only dump only the schema, no data
\n
"
));
printf
(
_
(
" -s, --schema-only dump only the schema, no data
\n
"
));
printf
(
_
(
" -S, --superuser=NAME specify the superuser user name to use in the dump
\n
"
));
printf
(
_
(
" -S, --superuser=NAME specify the superuser user name to use in the dump
\n
"
));
printf
(
_
(
" -x, --no-privileges do not dump privileges (grant/revoke)
\n
"
));
printf
(
_
(
" -x, --no-privileges do not dump privileges (grant/revoke)
\n
"
));
...
...
src/bin/pg_dump/pg_restore.c
View file @
2ee3a720
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.6
7 2004/11/27 18:51:06
tgl Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.6
8 2004/12/03 18:48:19
tgl Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -376,7 +376,7 @@ usage(const char *progname)
...
@@ -376,7 +376,7 @@ usage(const char *progname)
printf
(
_
(
" -I, --index=NAME restore named index
\n
"
));
printf
(
_
(
" -I, --index=NAME restore named index
\n
"
));
printf
(
_
(
" -L, --use-list=FILENAME use specified table of contents for ordering
\n
"
printf
(
_
(
" -L, --use-list=FILENAME use specified table of contents for ordering
\n
"
" output from this file
\n
"
));
" output from this file
\n
"
));
printf
(
_
(
" -O, --no-owner
do not issue commands to set
object ownership
\n
"
));
printf
(
_
(
" -O, --no-owner
skip restoration of
object ownership
\n
"
));
printf
(
_
(
" -P, --function=NAME(args)
\n
"
printf
(
_
(
" -P, --function=NAME(args)
\n
"
" 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
"
));
...
...
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