Commit b921aeb1 authored by Tom Lane's avatar Tom Lane

Fix comment block trashed by pgindent.

Looks like I put the protective dashes in the wrong place in f4e4b327.
parent be11f840
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment