mirror of
https://github.com/postgres/postgres.git
synced 2025-10-16 17:07:43 +03:00
pg_dump: Fix some messages
Make quoting style match existing style. Improve plural support.
This commit is contained in:
@@ -631,7 +631,7 @@ RestoreArchive(Archive *AHX)
|
||||
{
|
||||
/* Show namespace if available */
|
||||
if (te->namespace)
|
||||
ahlog(AH, 1, "setting owner and privileges for %s \"%s\".\"%s\"\n",
|
||||
ahlog(AH, 1, "setting owner and privileges for %s \"%s.%s\"\n",
|
||||
te->desc, te->namespace, te->tag);
|
||||
else
|
||||
ahlog(AH, 1, "setting owner and privileges for %s \"%s\"\n",
|
||||
@@ -711,7 +711,7 @@ restore_toc_entry(ArchiveHandle *AH, TocEntry *te,
|
||||
{
|
||||
/* Show namespace if available */
|
||||
if (te->namespace)
|
||||
ahlog(AH, 1, "creating %s \"%s\".\"%s\"\n",
|
||||
ahlog(AH, 1, "creating %s \"%s.%s\"\n",
|
||||
te->desc, te->namespace, te->tag);
|
||||
else
|
||||
ahlog(AH, 1, "creating %s \"%s\"\n", te->desc, te->tag);
|
||||
@@ -807,7 +807,7 @@ restore_toc_entry(ArchiveHandle *AH, TocEntry *te,
|
||||
_becomeOwner(AH, te);
|
||||
_selectOutputSchema(AH, te->namespace);
|
||||
|
||||
ahlog(AH, 1, "processing data for table \"%s\".\"%s\"\n",
|
||||
ahlog(AH, 1, "processing data for table \"%s.%s\"\n",
|
||||
te->namespace, te->tag);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user