]> granicus.if.org Git - postgresql/commitdiff
Fix comment block trashed by pgindent.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 6 Feb 2016 20:13:36 +0000 (15:13 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 6 Feb 2016 20:13:36 +0000 (15:13 -0500)
Looks like I put the protective dashes in the wrong place in f4e4b32743.

src/backend/executor/nodeHash.c

index d5a6892f7bc1de835cba15d918803f261f9b0df0..47160e4aa0797fd5d03f0b85f9e7fb85d4722909 100644 (file)
@@ -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;