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:57:09 +0200 |
commit | 20a566cd43bb45561c64315f7744282100abb7f1 (patch) | |
tree | c95e310cb0d7dfdbca1bbba60c724f34ff444e15 /src/backend/executor/nodeHash.c | |
parent | cf6f802bf538ab1c9c0ef60a6e9d6fafdfb06b98 (diff) | |
download | postgresql-20a566cd43bb45561c64315f7744282100abb7f1.tar.gz postgresql-20a566cd43bb45561c64315f7744282100abb7f1.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 ce85a7725dd..e73a1d09af6 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -1173,6 +1173,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 |