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

Fix some typos and some incorrectly duplicated words

Author: Justin Pryzby
Reviewed-by: David Rowley
Discussion: https://postgr.es/m/ZD3D1QxoccnN8A1V@telsasoft.com
This commit is contained in:
David Rowley
2023-04-18 14:03:30 +12:00
parent b4dbf3e924
commit eef231e816
20 changed files with 22 additions and 22 deletions

View File

@@ -3541,7 +3541,7 @@ printVerboseErrorMessages(CState *st, pg_time_usec_t *now, bool is_retry)
"ends the failed transaction"));
appendPQExpBuffer(buf, " (try %u", st->tries);
/* Print max_tries if it is not unlimitted. */
/* Print max_tries if it is not unlimited. */
if (max_tries)
appendPQExpBuffer(buf, "/%u", max_tries);
@@ -5303,7 +5303,7 @@ GetTableInfo(PGconn *con, bool scale_given)
pg_log_error_hint("Perhaps you need to do initialization (\"pgbench -i\") in database \"%s\".", PQdb(con));
exit(1);
}
else /* PQntupes(res) == 1 */
else /* PQntuples(res) == 1 */
{
/* normal case, extract partition information */
if (PQgetisnull(res, 0, 1))