1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-19 17:02:53 +03:00

Fix typo in nodeHash.c

Replace "overlow" with "overflow".

Author: Tender Wang <tndrwang@gmail.com>
Discussion: https://postgr.es/m/CAHewXNnzFjAjYLTkP78HE2PQ17MjBqFdQQg+0X6Wo7YMUb68xA@mail.gmail.com
This commit is contained in:
Richard Guo
2025-11-19 11:04:03 +09:00
parent 6a51707551
commit db0d2d75d0

View File

@@ -905,7 +905,7 @@ ExecChooseHashTableSize(double ntuples, int tupwidth, bool useskew,
Assert((*num_skew_mcvs) < (INT_MAX / 2)); Assert((*num_skew_mcvs) < (INT_MAX / 2));
/* /*
* Check that space_allowed won't overlow SIZE_MAX. * Check that space_allowed won't overflow SIZE_MAX.
* *
* We don't use hash_table_bytes here, because it does not include the * We don't use hash_table_bytes here, because it does not include the
* skew buckets. And we want to limit the overall memory limit. * skew buckets. And we want to limit the overall memory limit.