aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeHash.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-02-06 15:13:36 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2016-02-06 15:13:36 -0500
commitb921aeb1676f128f2c41ddc40d3887964ea9eae9 (patch)
tree49d777e096869d9df47280533ffe9d59181f35d1 /src/backend/executor/nodeHash.c
parentbe11f8400d7d99e8ae6602f3175e04b4f0c99376 (diff)
downloadpostgresql-b921aeb1676f128f2c41ddc40d3887964ea9eae9.tar.gz
postgresql-b921aeb1676f128f2c41ddc40d3887964ea9eae9.zip
Fix comment block trashed by pgindent.
Looks like I put the protective dashes in the wrong place in f4e4b32743.
Diffstat (limited to 'src/backend/executor/nodeHash.c')
-rw-r--r--src/backend/executor/nodeHash.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c
index d5a6892f7bc..47160e4aa07 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;