diff options
Diffstat (limited to 'src/backend/executor/execUtils.c')
-rw-r--r-- | src/backend/executor/execUtils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c index 2bd8b428359..0bbd0d46402 100644 --- a/src/backend/executor/execUtils.c +++ b/src/backend/executor/execUtils.c @@ -524,8 +524,8 @@ ExecBuildProjectionInfo(List *targetList, * We separate the target list elements into simple Var references and * expressions which require the full ExecTargetList machinery. To be a * simple Var, a Var has to be a user attribute and not mismatch the - * inputDesc. (Note: if there is a type mismatch then ExecEvalVar will - * probably throw an error at runtime, but we leave that to it.) + * inputDesc. (Note: if there is a type mismatch then ExecEvalScalarVar + * will probably throw an error at runtime, but we leave that to it.) */ exprlist = NIL; numSimpleVars = 0; |