File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 33 * execnodes.h
44 * definitions for executor state nodes
55 *
6+ * ExprState represents the evaluation state for a whole expression tree.
7+ * Most Expr-based plan nodes do not have a corresponding expression state
8+ * node, they're fully handled within execExpr* - but sometimes the state
9+ * needs to be shared with other parts of the executor, as for example
10+ * with SubPlanState, which nodeSubplan.c has to modify.
11+ *
612 *
713 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
814 * Portions Copyright (c) 1994, Regents of the University of California
Original file line number Diff line number Diff line change @@ -218,12 +218,6 @@ typedef enum NodeTag
218218
219219 /*
220220 * TAGS FOR EXPRESSION STATE NODES (execnodes.h)
221- *
222- * ExprState represents the evaluation state for a whole expression tree.
223- * Most Expr-based plan nodes do not have a corresponding expression state
224- * node, they're fully handled within execExpr* - but sometimes the state
225- * needs to be shared with other parts of the executor, as for example
226- * with SubPlanState, which nodeSubplan.c has to modify.
227221 */
228222 T_ExprState ,
229223 T_WindowFuncExprState ,
You can’t perform that action at this time.
0 commit comments