diff options
author | Neil Conway <neilc@samurai.com> | 2006-11-08 00:45:30 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-11-08 00:45:30 +0000 |
commit | 8964b41c7b88bb1acc7bb9811ca8cb4938c7a410 (patch) | |
tree | 9daca91d68bf5028885a79a96e1a2253cf58028c /src | |
parent | 9b3aee524ff92e681fc19d0bf2a5f0b8f8ab12c1 (diff) | |
download | postgresql-8964b41c7b88bb1acc7bb9811ca8cb4938c7a410.tar.gz postgresql-8964b41c7b88bb1acc7bb9811ca8cb4938c7a410.zip |
Remove a 15-year old comment questioning behavior that is now well-
established: referencing an undefined parameter should result in an
error, not NULL.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/execQual.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/executor/execQual.c b/src/backend/executor/execQual.c index 6559947bf1e..a827335c620 100644 --- a/src/backend/executor/execQual.c +++ b/src/backend/executor/execQual.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/execQual.c,v 1.197 2006/11/06 18:21:31 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/executor/execQual.c,v 1.198 2006/11/08 00:45:30 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -595,11 +595,6 @@ ExecEvalConst(ExprState *exprstate, ExprContext *econtext, * something like ($.name) and the expression context contains * the current parameter bindings (name = "sam") (age = 34)... * so our job is to find and return the appropriate datum ("sam"). - * - * Q: if we have a parameter ($.foo) without a binding, i.e. - * there is no (foo = xxx) in the parameter list info, - * is this a fatal error or should this be a "not available" - * (in which case we could return NULL)? -cim 10/13/89 * ---------------------------------------------------------------- */ static Datum |