8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe550b2 commit 2df465eCopy full SHA for 2df465e
src/backend/executor/nodeHash.c
@@ -625,7 +625,7 @@ ExecHashIncreaseNumBatches(HashJoinTable hashtable)
625
* buckets now and not have to keep track which tuples in the buckets have
626
* already been processed. We will free the old chunks as we go.
627
*/
628
- memset(hashtable->buckets, 0, sizeof(HashJoinTuple *) * hashtable->nbuckets);
+ memset(hashtable->buckets, 0, sizeof(HashJoinTuple) * hashtable->nbuckets);
629
oldchunks = hashtable->chunks;
630
hashtable->chunks = NULL;
631
0 commit comments