summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorPeter Eisentraut2021-07-21 06:48:33 +0000
committerPeter Eisentraut2021-07-21 06:48:33 +0000
commitd9a38c52cef3cf80c4259277f11d42a86ecb1952 (patch)
treec6685b01ab03d9814a16fd0bd31222e5fcb642db /src/include/nodes/execnodes.h
parent81d5995b4b78017ef9e5c6f151361d1fb949924c (diff)
Rename NodeTag of ExprState
Rename from tag to type, for consistency with all other node structs. Discussion: https://www.postgresql.org/message-id/flat/[email protected]
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 105180764e1..ffc78447563 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -60,7 +60,7 @@ typedef Datum (*ExprStateEvalFunc) (struct ExprState *expression,
typedef struct ExprState
{
- NodeTag tag;
+ NodeTag type;
uint8 flags; /* bitmask of EEO_FLAG_* bits, see above */