Author:
Reviewed-By:
Discussion: https://postgr.es/m/
Backpatch:
projInfo->pi_exprContext = econtext;
/* We embed ExprState into ProjectionInfo instead of doing extra palloc */
- projInfo->pi_state.tag.type = T_ExprState;
+ projInfo->pi_state.tag = T_ExprState;
state = &projInfo->pi_state;
state->expr = (Expr *) targetList;
state->parent = parent;
typedef struct ExprState
{
- Node tag;
+ NodeTag tag;
uint8 flags; /* bitmask of EEO_FLAG_* bits, see above */