diff options
author | Michael Paquier | 2025-04-07 06:37:34 +0000 |
---|---|---|
committer | Michael Paquier | 2025-04-07 06:37:34 +0000 |
commit | d6f118444db320d13b70e7fbb8eac3ab2113b93d (patch) | |
tree | 691b2999b7a202742b82cfd830cb43e9524d370b /src | |
parent | 2c7bd2ba507e273f2d7fe1b2f6d30775ed4f3c09 (diff) |
Fix grammar in log message of pg_restore.c
Introduced by 1495eff7bdb0.
Author: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Discussion: https://postgr.es/m/20250407.151359.72428746612514925.horikyota.ntt@gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_restore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_restore.c b/src/bin/pg_dump/pg_restore.c index b3dbde0d044..fe33b283a01 100644 --- a/src/bin/pg_dump/pg_restore.c +++ b/src/bin/pg_dump/pg_restore.c @@ -1254,7 +1254,7 @@ restore_all_databases(PGconn *conn, const char *dumpdirpath, } /* Log number of processed databases. */ - pg_log_info("number of restored databases are %d", num_db_restore); + pg_log_info("number of restored databases is %d", num_db_restore); /* Free dbname and dboid list. */ simple_oid_string_list_destroy(&dbname_oid_list); |