diff options
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r-- | src/include/nodes/nodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 7ddd8c011bf..3684f87a883 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -206,10 +206,9 @@ typedef enum NodeTag * Most Expr-based plan nodes do not have a corresponding expression state * node, they're fully handled within execExpr* - but sometimes the state * needs to be shared with other parts of the executor, as for example - * with AggrefExprState, which nodeAgg.c has to modify. + * with SubPlanState, which nodeSubplan.c has to modify. */ T_ExprState, - T_AggrefExprState, T_WindowFuncExprState, T_SetExprState, T_SubPlanState, |