Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2647b24

Browse files
committed
Fix possible "invalid memory alloc request size" failure in nodeHash.c.
Limit the size of the hashtable pointer array to not more thanMaxAllocSize. We've seen reports of failures due to this in HEAD/9.5,and it seems possible in older branches as well. The change inNTUP_PER_BUCKET in 9.5 may have made the problem more likely, butsurely it didn't introduce it.Tomas Vondra, slightly modified by me
1 parent47ac95f commit2647b24

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/backend/executor/nodeHash.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,10 +459,12 @@ ExecChooseHashTableSize(double ntuples, int tupwidth, bool useskew,
459459
* Set nbuckets to achieve an average bucket load of NTUP_PER_BUCKET when
460460
* memory is filled. Set nbatch to the smallest power of 2 that appears
461461
* sufficient. The Min() steps limit the results so that the pointer
462-
* arrays we'll try to allocate do not exceed work_mem.
462+
* arrays we'll try to allocate do not exceed work_mem nor MaxAllocSize.
463463
*/
464-
max_pointers= (work_mem*1024L) /sizeof(void*);
464+
max_pointers= (work_mem*1024L) /sizeof(HashJoinTuple);
465+
max_pointers=Min(max_pointers,MaxAllocSize /sizeof(HashJoinTuple));
465466
/* also ensure we avoid integer overflow in nbatch and nbuckets */
467+
/* (this step is redundant given the current value of MaxAllocSize) */
466468
max_pointers=Min(max_pointers,INT_MAX /2);
467469

468470
if (inner_rel_bytes>hash_table_bytes)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp