Commit d074805f authored by Magnus Hagander's avatar Magnus Hagander

Change "restoring" to "processing" in message from pg_dump

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.
parent 4effe7a5
...@@ -655,7 +655,7 @@ restore_toc_entry(ArchiveHandle *AH, TocEntry *te, ...@@ -655,7 +655,7 @@ restore_toc_entry(ArchiveHandle *AH, TocEntry *te,
if (strcmp(te->desc, "BLOBS") == 0 || if (strcmp(te->desc, "BLOBS") == 0 ||
strcmp(te->desc, "BLOB COMMENTS") == 0) strcmp(te->desc, "BLOB COMMENTS") == 0)
{ {
ahlog(AH, 1, "restoring %s\n", te->desc); ahlog(AH, 1, "processing %s\n", te->desc);
_selectOutputSchema(AH, "pg_catalog"); _selectOutputSchema(AH, "pg_catalog");
...@@ -669,7 +669,7 @@ restore_toc_entry(ArchiveHandle *AH, TocEntry *te, ...@@ -669,7 +669,7 @@ restore_toc_entry(ArchiveHandle *AH, TocEntry *te,
_becomeOwner(AH, te); _becomeOwner(AH, te);
_selectOutputSchema(AH, te->namespace); _selectOutputSchema(AH, te->namespace);
ahlog(AH, 1, "restoring data for table \"%s\"\n", ahlog(AH, 1, "processing data for table \"%s\"\n",
te->tag); te->tag);
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment