From b1fbc6494ef57964adb22f0ee14ec314010b5629 Mon Sep 17 00:00:00 2001 From: =?utf8?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 7e0c93247a6..b26b8998c63 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -897,7 +897,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 5c69ec31c39..f38fc411084 100644 --- a/src/bin/pg_dump/t/005_pg_dump_filterfile.pl +++ b/src/bin/pg_dump/t/005_pg_dump_filterfile.pl @@ -540,7 +540,7 @@ $dump = slurp_file($plainfile); ok($dump !~ qr/^\\connect postgres/m, "database postgres is not dumped"); ok($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. */ -- 2.39.5