aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-07-09 13:22:46 +0200
committerPeter Eisentraut <peter@eisentraut.org>2022-07-09 13:22:46 +0200
commit3e44aee3cea426e331c5cec6452b52bf8dd25e19 (patch)
tree3d215bff0d2e92edb13ec891698858b8a80a6b61 /src
parentec156cf974775914d8da942504b7282d124a594b (diff)
downloadpostgresql-3e44aee3cea426e331c5cec6452b52bf8dd25e19.tar.gz
postgresql-3e44aee3cea426e331c5cec6452b52bf8dd25e19.zip
Move a comment
Move a comment from the to-be-deleted section of nodes.h to where it might still be useful.
Diffstat (limited to 'src')
-rw-r--r--src/include/nodes/execnodes.h6
-rw-r--r--src/include/nodes/nodes.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 57288013795..17c42d4a88a 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -3,6 +3,12 @@
* execnodes.h
* definitions for executor state nodes
*
+ * ExprState represents the evaluation state for a whole expression tree.
+ * 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 SubPlanState, which nodeSubplan.c has to modify.
+ *
*
* Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h
index 4f720b6d69f..9999336eb45 100644
--- a/src/include/nodes/nodes.h
+++ b/src/include/nodes/nodes.h
@@ -218,12 +218,6 @@ typedef enum NodeTag
/*
* TAGS FOR EXPRESSION STATE NODES (execnodes.h)
- *
- * ExprState represents the evaluation state for a whole expression tree.
- * 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 SubPlanState, which nodeSubplan.c has to modify.
*/
T_ExprState,
T_WindowFuncExprState,