Skip to content

Commit 2313a3e

Browse files
Fix statenames in mergejoin comments
The names in the comments were on a few states not consistent with the documented state. Author: Zhihong Yu <[email protected]> Discussion: https://postgr.es/m/CALNJ-vQVthfQXVqmrHR8BKHtC4fMGbhM1xbvJNJAPexTq_dH=w@mail.gmail.com
1 parent afdeff1 commit 2313a3e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/backend/executor/nodeMergejoin.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1143,7 +1143,7 @@ ExecMergeJoin(PlanState *pstate)
11431143
break;
11441144

11451145
/*----------------------------------------------------------
1146-
* EXEC_MJ_SKIP means compare tuples and if they do not
1146+
* EXEC_MJ_SKIP_TEST means compare tuples and if they do not
11471147
* match, skip whichever is lesser.
11481148
*
11491149
* For example:
@@ -1199,8 +1199,8 @@ ExecMergeJoin(PlanState *pstate)
11991199
break;
12001200

12011201
/*
1202-
* SKIPOUTER_ADVANCE: advance over an outer tuple that is
1203-
* known not to join to any inner tuple.
1202+
* EXEC_MJ_SKIPOUTER_ADVANCE: advance over an outer tuple that
1203+
* is known not to join to any inner tuple.
12041204
*
12051205
* Before advancing, we check to see if we must emit an
12061206
* outer-join fill tuple for this outer tuple.
@@ -1261,8 +1261,8 @@ ExecMergeJoin(PlanState *pstate)
12611261
break;
12621262

12631263
/*
1264-
* SKIPINNER_ADVANCE: advance over an inner tuple that is
1265-
* known not to join to any outer tuple.
1264+
* EXEC_MJ_SKIPINNER_ADVANCE: advance over an inner tuple that
1265+
* is known not to join to any outer tuple.
12661266
*
12671267
* Before advancing, we check to see if we must emit an
12681268
* outer-join fill tuple for this inner tuple.

0 commit comments

Comments
 (0)