diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-11-12 15:14:51 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-11-12 15:18:27 -0500 |
commit | 5c85d1122b935a30f7cfb6a09ba282322b3b6bee (patch) | |
tree | 4ffa1269072f608545fa05e959f02b1e90089b65 /src | |
parent | d434e8f6ad2580a9137cc91d27af54e73079a471 (diff) | |
download | postgresql-5c85d1122b935a30f7cfb6a09ba282322b3b6bee.tar.gz postgresql-5c85d1122b935a30f7cfb6a09ba282322b3b6bee.zip |
Fix old oversight in const-simplification of COALESCE() expressions.
Once we have found a non-null constant argument, there is no need to
examine additional arguments of the COALESCE. The previous coding got it
right only if the constant was in the first argument position; otherwise
it tried to simplify following arguments too, leading to unexpected
behavior like this:
regression=# select coalesce(f1, 42, 1/0) from int4_tbl;
ERROR: division by zero
It's a minor corner case, but a bug is a bug, so back-patch all the way.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/optimizer/util/clauses.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/optimizer/util/clauses.c b/src/backend/optimizer/util/clauses.c index f6ec7a64d54..d23578455cb 100644 --- a/src/backend/optimizer/util/clauses.c +++ b/src/backend/optimizer/util/clauses.c @@ -2733,7 +2733,9 @@ eval_const_expressions_mutator(Node *node, /* * We can remove null constants from the list. For a non-null * constant, if it has not been preceded by any other - * non-null-constant expressions then that is the result. + * non-null-constant expressions then it is the result. Otherwise, + * it's the next argument, but we can drop following arguments + * since they will never be reached. */ if (IsA(e, Const)) { @@ -2741,6 +2743,8 @@ eval_const_expressions_mutator(Node *node, continue; /* drop null constant */ if (newargs == NIL) return e; /* first expr */ + newargs = lappend(newargs, e); + break; } newargs = lappend(newargs, e); } |