We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentbe11f84 commitb921aebCopy full SHA for b921aeb
src/backend/executor/nodeHash.c
@@ -1121,12 +1121,13 @@ ExecScanHashBucket(HashJoinState *hjstate,
1121
void
1122
ExecPrepHashTableForUnmatched(HashJoinState*hjstate)
1123
{
1124
-/*
1125
- *----------During this scan we use the HashJoinState fields as follows:
+/*----------
+ * During this scan we use the HashJoinState fields as follows:
1126
*
1127
- * hj_CurBucketNo: next regular bucket to scan hj_CurSkewBucketNo: next
1128
- * skew bucket (an index into skewBucketNums) hj_CurTuple: last tuple
1129
- * 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
1130
+ *----------
1131
*/
1132
hjstate->hj_CurBucketNo=0;
1133
hjstate->hj_CurSkewBucketNo=0;