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:51 +0200 |
commit | a5e2853c38db7181a35486e1865e07f73782bc99 (patch) | |
tree | 5a4edbc6e891eca2bf06513ffebd0fd696574b22 /src/backend/executor/nodeHash.c | |
parent | 1c7443521f856dfb5f6731ff6fc0865a67a29f14 (diff) | |
download | postgresql-a5e2853c38db7181a35486e1865e07f73782bc99.tar.gz postgresql-a5e2853c38db7181a35486e1865e07f73782bc99.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 182aa9a216c..d70e624b674 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -1154,6 +1154,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 |