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:58 +0200 |
commit | 97e64911da34835cba5bd9c98eda608feefa9dfa (patch) | |
tree | bf41dc390116db1d9dbe0ae0bed41861a97f1d4c | |
parent | 90e8b86fc52a4be21aec16abfb5dccfb819cc53e (diff) | |
download | postgresql-97e64911da34835cba5bd9c98eda608feefa9dfa.tar.gz postgresql-97e64911da34835cba5bd9c98eda608feefa9dfa.zip |
Fix indentation in ExecParallelHashIncreaseNumBatches()
Backpatch-through: 12
-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 40ddfa32d59..945ac5067e2 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 |