projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4effe7a
)
Change "restoring" to "processing" in message from pg_dump
author
Magnus Hagander
Tue, 4 Sep 2012 13:00:04 +0000
(15:00 +0200)
committer
Magnus Hagander
Tue, 4 Sep 2012 13:00:04 +0000
(15:00 +0200)
The same message is used in both pg_restore and pg_dump, and it's
confusing to output "restoring data for table xyz" when the user
is just doing a pg_dump.
src/bin/pg_dump/pg_backup_archiver.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_dump/pg_backup_archiver.c
b/src/bin/pg_dump/pg_backup_archiver.c
index c7ef9a6fd33582f26b830de9059bcfcb14b19338..722b3e924c0d3f9295319f340586ec38c0f8342e 100644
(file)
--- a/
src/bin/pg_dump/pg_backup_archiver.c
+++ b/
src/bin/pg_dump/pg_backup_archiver.c
@@
-655,7
+655,7
@@
restore_toc_entry(ArchiveHandle *AH, TocEntry *te,
if (strcmp(te->desc, "BLOBS") == 0 ||
strcmp(te->desc, "BLOB COMMENTS") == 0)
{
- ahlog(AH, 1, "
restor
ing %s\n", te->desc);
+ ahlog(AH, 1, "
process
ing %s\n", te->desc);
_selectOutputSchema(AH, "pg_catalog");
@@
-669,7
+669,7
@@
restore_toc_entry(ArchiveHandle *AH, TocEntry *te,
_becomeOwner(AH, te);
_selectOutputSchema(AH, te->namespace);
- ahlog(AH, 1, "
restor
ing data for table \"%s\"\n",
+ ahlog(AH, 1, "
process
ing data for table \"%s\"\n",
te->tag);
/*