Fix grammar in log message of pg_restore.c
authorMichael Paquier <[email protected]>
Mon, 7 Apr 2025 06:37:34 +0000 (15:37 +0900)
committerMichael Paquier <[email protected]>
Mon, 7 Apr 2025 06:37:34 +0000 (15:37 +0900)
Introduced by 1495eff7bdb0.

Author: Kyotaro Horiguchi <[email protected]>
Discussion: https://postgr.es/m/20250407.151359.72428746612514925[email protected]

src/bin/pg_dump/pg_restore.c

index b3dbde0d04454f5b4918e415d8edde1cf54837b7..fe33b283a0159035cce80a3b1732e1414e52869c 100644 (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);