diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2024-01-08 19:43:05 +0200 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2024-01-08 19:58:38 +0200 |
commit | 17b6f39f19b1a54baac36f38b49067b0ce9fd7b0 (patch) | |
tree | 322b508e26703e02a2dd7a9b0ae14c394e74e31e /src/backend/executor/nodeHash.c | |
parent | 9e7432fafc9290792baa7fd4aff03387973b139b (diff) |
Fix indentation in ExecParallelHashIncreaseNumBatches()
Backpatch-through: 12
Diffstat (limited to 'src/backend/executor/nodeHash.c')
-rw-r--r-- | src/backend/executor/nodeHash.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index bdeff24950c..4d64ae0dcc2 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -1175,6 +1175,7 @@ ExecParallelHashIncreaseNumBatches(HashJoinTable hashtable) * array. */ dtuples = (old_batch0->ntuples * 2.0) / new_nbatch; + /* * We need to calculate the maximum number of buckets to * stay within the MaxAllocSize boundary. Round the |