From 77fb3959a45d1a748cb28f3f58da18c6645b45d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Herrera?= Date: Tue, 18 Nov 2025 19:31:23 +0100 Subject: [PATCH] Fix typo --- src/backend/executor/nodeHash.c | 2 +- src/bin/pg_dump/t/005_pg_dump_filterfile.pl | 2 +- src/interfaces/libpq/fe-secure-openssl.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index 29b43e4d454..774e7f05b48 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -896,7 +896,7 @@ ExecChooseHashTableSize(double ntuples, int tupwidth, bool useskew, */ while (nbatch > 1) { - /* Check that buckets wont't overflow MaxAllocSize */ + /* Check that buckets won't overflow MaxAllocSize */ if (nbuckets > (MaxAllocSize / sizeof(HashJoinTuple) / 2)) break; diff --git a/src/bin/pg_dump/t/005_pg_dump_filterfile.pl b/src/bin/pg_dump/t/005_pg_dump_filterfile.pl index 7a47ad17da9..bd848a84b2e 100644 --- a/src/bin/pg_dump/t/005_pg_dump_filterfile.pl +++ b/src/bin/pg_dump/t/005_pg_dump_filterfile.pl @@ -561,7 +561,7 @@ $dump = slurp_file($plainfile); unlike($dump, qr/^\\connect postgres/m, "database postgres is not dumped"); like($dump, qr/^\\connect template1/m, "database template1 is dumped"); -# Make sure this option dont break the existing limitation of using +# Make sure this option doesn't break the existing limitation of using # --globals-only with exclusions command_fails_like( [ diff --git a/src/interfaces/libpq/fe-secure-openssl.c b/src/interfaces/libpq/fe-secure-openssl.c index 51dd7b9fec0..d2045c73ae6 100644 --- a/src/interfaces/libpq/fe-secure-openssl.c +++ b/src/interfaces/libpq/fe-secure-openssl.c @@ -694,7 +694,7 @@ static unsigned char alpn_protos[] = PG_ALPN_PROTOCOL_VECTOR; * 3.5 introduced stub function to set the callback for OpenSSL compatibility * but the callback is never invoked. * - * Error messages added to the connection object wont be printed anywhere if + * Error messages added to the connection object won't be printed anywhere if * the connection is successful. Errors in processing keylogging are printed * to stderr to overcome this. */