1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix grammar in log message of pg_restore.c

Introduced by 1495eff7bd.

Author: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Discussion: https://postgr.es/m/20250407.151359.72428746612514925.horikyota.ntt@gmail.com
This commit is contained in:
Michael Paquier
2025-04-07 15:37:34 +09:00
parent 2c7bd2ba50
commit d6f118444d

View File

@ -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);