From db0d2d75d0bbdf08e2756b075d4a887b0d30b750 Mon Sep 17 00:00:00 2001 From: Richard Guo Date: Wed, 19 Nov 2025 11:04:03 +0900 Subject: [PATCH] Fix typo in nodeHash.c Replace "overlow" with "overflow". Author: Tender Wang Discussion: https://postgr.es/m/CAHewXNnzFjAjYLTkP78HE2PQ17MjBqFdQQg+0X6Wo7YMUb68xA@mail.gmail.com --- src/backend/executor/nodeHash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index b26b8998c63..2b114f12b22 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -905,7 +905,7 @@ ExecChooseHashTableSize(double ntuples, int tupwidth, bool useskew, 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 * skew buckets. And we want to limit the overall memory limit. -- 2.39.5