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:03 +0200 |
commit | 6eecc3a622b2db39417e5457735420468b89897e (patch) | |
tree | f43a18c7e0b4bf4183edabf3a49201ac1cd5f2cd /src/backend/executor/nodeHash.c | |
parent | 940ab02b53eb3a3babc9dd4dea261f5a6d8aa334 (diff) | |
download | postgresql-6eecc3a622b2db39417e5457735420468b89897e.tar.gz postgresql-6eecc3a622b2db39417e5457735420468b89897e.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 aeac4cbf583..34dd9a28d95 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 |