diff options
Diffstat (limited to 'src/include/nodes/params.h')
-rw-r--r-- | src/include/nodes/params.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/nodes/params.h b/src/include/nodes/params.h index 8f2eff5165e..c8bc2857ed8 100644 --- a/src/include/nodes/params.h +++ b/src/include/nodes/params.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: params.h,v 1.19 2002/12/05 15:50:39 tgl Exp $ + * $Id: params.h,v 1.20 2002/12/13 19:46:00 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -88,8 +88,8 @@ typedef ParamListInfoData *ParamListInfo; * array of ParamExecData records, which is referenced through * es_param_exec_vals or ecxt_param_exec_vals. * - * If execPlan is not NULL, it points to a SubPlanState node that needs to - * be executed to produce the value. (This is done so that we can have + * If execPlan is not NULL, it points to a SubPlanExprState node that needs + * to be executed to produce the value. (This is done so that we can have * lazy evaluation of InitPlans: they aren't executed until/unless a * result value is needed.) Otherwise the value is assumed to be valid * when needed. @@ -98,7 +98,7 @@ typedef ParamListInfoData *ParamListInfo; typedef struct ParamExecData { - void *execPlan; /* should be "SubPlanState *" */ + void *execPlan; /* should be "SubPlanExprState *" */ Datum value; bool isnull; } ParamExecData; |