File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
* execnodes.h
4
4
* definitions for executor state nodes
5
5
*
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
+ *
6
12
*
7
13
* Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8
14
* 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
218
218
219
219
/*
220
220
* 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.
227
221
*/
228
222
T_ExprState ,
229
223
T_WindowFuncExprState ,
You can’t perform that action at this time.
0 commit comments