REL_18_STABLE
Álvaro Herrera 4 weeks ago
parent 12bc329177
commit b1fbc6494e
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
  1. 2
      src/backend/executor/nodeHash.c
  2. 2
      src/bin/pg_dump/t/005_pg_dump_filterfile.pl
  3. 2
      src/interfaces/libpq/fe-secure-openssl.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;

@ -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(
[

@ -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.
*/

Loading…
Cancel
Save