diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2024-01-08 19:43:05 +0200 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2024-01-08 20:00:20 +0200 |
commit | 6d94cc6ca1b775335f58527ece6c12d74ec41bde (patch) | |
tree | 159bb542f8fb16b2d252c655cfb38e00bf761b06 /src/backend/executor/nodeHash.c | |
parent | 89b69db82adf742cadc36ee9a365cf47a632cdb0 (diff) | |
download | postgresql-6d94cc6ca1b775335f58527ece6c12d74ec41bde.tar.gz postgresql-6d94cc6ca1b775335f58527ece6c12d74ec41bde.zip |
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 6e5297a159b..f90e16ede8a 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -1168,6 +1168,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 |