Skip to content

Commit 3e44aee

Browse files
committed
Move a comment
Move a comment from the to-be-deleted section of nodes.h to where it might still be useful.
1 parent ec156cf commit 3e44aee

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/include/nodes/execnodes.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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

src/include/nodes/nodes.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)