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
77c0204a
Commit
77c0204a
authored
Oct 22, 2004
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message styling
parent
c70b7b7a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_archiver.c
+3
-3
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+4
-4
src/bin/pg_dump/pg_restore.c
src/bin/pg_dump/pg_restore.c
+2
-2
No files found.
src/bin/pg_dump/pg_backup_archiver.c
View file @
77c0204a
...
...
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.9
8 2004/10/08 15:03:26 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.9
9 2004/10/22 16:04:35 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -395,7 +395,7 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt)
if
((
reqs
&
REQ_SCHEMA
)
!=
0
)
/* We want the schema */
{
ahlog
(
AH
,
1
,
"setting owner and
acl
for %s %s
\n
"
,
ahlog
(
AH
,
1
,
"setting owner and
privileges
for %s %s
\n
"
,
te
->
desc
,
te
->
tag
);
_printTocEntry
(
AH
,
te
,
ropt
,
false
,
true
);
}
...
...
@@ -1269,7 +1269,7 @@ warn_or_die_horribly(ArchiveHandle *AH,
}
if
(
AH
->
currentTE
!=
NULL
&&
AH
->
currentTE
!=
AH
->
lastErrorTE
)
{
write_msg
(
modulename
,
"Error from TOC
E
ntry %d; %u %u %s %s %s
\n
"
,
AH
->
currentTE
->
dumpId
,
write_msg
(
modulename
,
"Error from TOC
e
ntry %d; %u %u %s %s %s
\n
"
,
AH
->
currentTE
->
dumpId
,
AH
->
currentTE
->
catalogId
.
tableoid
,
AH
->
currentTE
->
catalogId
.
oid
,
AH
->
currentTE
->
desc
,
AH
->
currentTE
->
tag
,
AH
->
currentTE
->
owner
);
}
...
...
src/bin/pg_dump/pg_dump.c
View file @
77c0204a
...
...
@@ -12,7 +12,7 @@
* by PostgreSQL
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.3
89 2004/10/18 00:20:41 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dump.c,v 1.3
90 2004/10/22 16:04:35 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -6930,7 +6930,7 @@ dumpConstraint(Archive *fout, ConstraintInfo *coninfo)
if
(
indxinfo
==
NULL
)
{
write_msg
(
NULL
,
"missing index for constraint
%s
\n
"
,
write_msg
(
NULL
,
"missing index for constraint
\"
%s
\"
\n
"
,
coninfo
->
dobj
.
name
);
exit_nicely
();
}
...
...
@@ -7100,7 +7100,7 @@ dumpConstraint(Archive *fout, ConstraintInfo *coninfo)
}
else
{
write_msg
(
NULL
,
"un
expected constraint type
\n
"
);
write_msg
(
NULL
,
"un
recognized constraint type: %c
\n
"
,
coninfo
->
contype
);
exit_nicely
();
}
...
...
@@ -7699,7 +7699,7 @@ getDependencies(void)
return
;
if
(
g_verbose
)
write_msg
(
NULL
,
"
fetch
ing dependency data
\n
"
);
write_msg
(
NULL
,
"
read
ing dependency data
\n
"
);
/* Make sure we are in proper schema */
selectSourceSchema
(
"pg_catalog"
);
...
...
src/bin/pg_dump/pg_restore.c
View file @
77c0204a
...
...
@@ -34,7 +34,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.6
4 2004/10/13 14:24:16 momjian
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.6
5 2004/10/22 16:04:35 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -372,7 +372,7 @@ usage(const char *progname)
printf
(
_
(
"
\n
Options controlling the restore:
\n
"
));
printf
(
_
(
" -a, --data-only restore only the data, no schema
\n
"
));
printf
(
_
(
" -c, --clean clean (drop) schema prior to create
\n
"
));
printf
(
_
(
" -C, --create
process
commands to create the database
\n
"
));
printf
(
_
(
" -C, --create
issue
commands to create the database
\n
"
));
printf
(
_
(
" -I, --index=NAME restore named index
\n
"
));
printf
(
_
(
" -L, --use-list=FILENAME use specified table of contents for ordering
\n
"
" output from this file
\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