aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 41288eda6e3..59b17f3c993 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -942,8 +942,9 @@ typedef struct CoerceToDomainState
{
ExprState xprstate;
ExprState *arg; /* input expression */
- /* Cached list of constraints that need to be checked */
- List *constraints; /* list of DomainConstraintState nodes */
+ /* Cached set of constraints that need to be checked */
+ /* use struct pointer to avoid including typcache.h here */
+ struct DomainConstraintRef *constraint_ref;
} CoerceToDomainState;
/*