Re: Fix typos in ExecChooseHashTableSize()

2025-11-18 Thread Tender Wang
Richard Guo 于2025年11月19日周三 10:18写道: > On Tue, Nov 18, 2025 at 6:30 PM Tender Wang wrote: > > In the first comment, "wont't" should be "won't". > > In the second comment, "overlow" should be "overflow". > > The first one was fixed by Álvaro in another commit. I've just pushed > a fix for the s

Re: Fix typos in ExecChooseHashTableSize()

2025-11-18 Thread Richard Guo
On Tue, Nov 18, 2025 at 6:30 PM Tender Wang wrote: > In the first comment, "wont't" should be "won't". > In the second comment, "overlow" should be "overflow". The first one was fixed by Álvaro in another commit. I've just pushed a fix for the second one. - Richard

Fix typos in ExecChooseHashTableSize()

2025-11-18 Thread Tender Wang
Hi, While stepping into the ExecChooseHashTableSize(), I found two typos in the comments One is as follows: /* Check that buckets wont't overflow MaxAllocSize */ if (nbuckets > (MaxAllocSize / sizeof(HashJoinTuple) / 2)) break; The other one is : /* * Check that space_allowed won't overlow