From: Tom Lane Date: Sat, 6 Feb 2016 20:13:36 +0000 (-0500) Subject: Fix comment block trashed by pgindent. X-Git-Tag: REL9_6_BETA1~752 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b921aeb1676f128f2c41ddc40d3887964ea9eae9;p=postgresql Fix comment block trashed by pgindent. Looks like I put the protective dashes in the wrong place in f4e4b32743. --- diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index d5a6892f7b..47160e4aa0 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -1121,12 +1121,13 @@ ExecScanHashBucket(HashJoinState *hjstate, void ExecPrepHashTableForUnmatched(HashJoinState *hjstate) { - /* - * ---------- During this scan we use the HashJoinState fields as follows: + /*---------- + * During this scan we use the HashJoinState fields as follows: * - * hj_CurBucketNo: next regular bucket to scan hj_CurSkewBucketNo: next - * skew bucket (an index into skewBucketNums) hj_CurTuple: last tuple - * returned, or NULL to start next bucket ---------- + * hj_CurBucketNo: next regular bucket to scan + * hj_CurSkewBucketNo: next skew bucket (an index into skewBucketNums) + * hj_CurTuple: last tuple returned, or NULL to start next bucket + *---------- */ hjstate->hj_CurBucketNo = 0; hjstate->hj_CurSkewBucketNo = 0;