mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
pg_dump: Fix verbosity level in LO progress messages
In passing, reword another instance of the same message that was gratuitously different. Author: Josh Kupershmidt after a bug report by Bosco Rama
This commit is contained in:
parent
d117d23b1a
commit
6d1650795e
@ -755,7 +755,7 @@ StartRestoreBlob(ArchiveHandle *AH, Oid oid)
|
|||||||
/* Initialize the LO Buffer */
|
/* Initialize the LO Buffer */
|
||||||
AH->lo_buf_used = 0;
|
AH->lo_buf_used = 0;
|
||||||
|
|
||||||
ahlog(AH, 2, "restoring large object with OID %u\n", oid);
|
ahlog(AH, 1, "restoring large object with OID %u\n", oid);
|
||||||
|
|
||||||
if (AH->connection)
|
if (AH->connection)
|
||||||
{
|
{
|
||||||
|
@ -729,7 +729,7 @@ _LoadBlobs(ArchiveHandle *AH, RestoreOptions *ropt)
|
|||||||
oid = atooid(&th->targetFile[5]);
|
oid = atooid(&th->targetFile[5]);
|
||||||
if (oid != 0)
|
if (oid != 0)
|
||||||
{
|
{
|
||||||
ahlog(AH, 1, "restoring large object OID %u\n", oid);
|
ahlog(AH, 1, "restoring large object with OID %u\n", oid);
|
||||||
|
|
||||||
StartRestoreBlob(AH, oid);
|
StartRestoreBlob(AH, oid);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user