mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Fix typo
This commit is contained in:
@@ -896,7 +896,7 @@ ExecChooseHashTableSize(double ntuples, int tupwidth, bool useskew,
|
|||||||
*/
|
*/
|
||||||
while (nbatch > 1)
|
while (nbatch > 1)
|
||||||
{
|
{
|
||||||
/* Check that buckets wont't overflow MaxAllocSize */
|
/* Check that buckets won't overflow MaxAllocSize */
|
||||||
if (nbuckets > (MaxAllocSize / sizeof(HashJoinTuple) / 2))
|
if (nbuckets > (MaxAllocSize / sizeof(HashJoinTuple) / 2))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|||||||
@@ -561,7 +561,7 @@ $dump = slurp_file($plainfile);
|
|||||||
unlike($dump, qr/^\\connect postgres/m, "database postgres is not dumped");
|
unlike($dump, qr/^\\connect postgres/m, "database postgres is not dumped");
|
||||||
like($dump, qr/^\\connect template1/m, "database template1 is 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
|
# --globals-only with exclusions
|
||||||
command_fails_like(
|
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
|
* 3.5 introduced stub function to set the callback for OpenSSL compatibility
|
||||||
* but the callback is never invoked.
|
* 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
|
* the connection is successful. Errors in processing keylogging are printed
|
||||||
* to stderr to overcome this.
|
* to stderr to overcome this.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user