Thread
-
[PATCH] Fix verb agreement in count message
Kyotaro Horiguchi <horikyota.ntt@gmail.com> — 2025-04-07T04:21:59Z
Correct a plural verb used by mistake. --- src/bin/pg_dump/pg_restore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.43.5 ----Next_Part(Mon_Apr__7_15_13_59_2025_252)----