- Notifications
You must be signed in to change notification settings - Fork5k
Commitfaea083
committed
Fix old oversight in const-simplification of COALESCE() expressions.
Once we have found a non-null constant argument, there is no need toexamine additional arguments of the COALESCE. The previous coding got itright only if the constant was in the first argument position; otherwiseit tried to simplify following arguments too, leading to unexpectedbehavior like this:regression=# select coalesce(f1, 42, 1/0) from int4_tbl;ERROR: division by zeroIt's a minor corner case, but a bug is a bug, so back-patch all the way.1 parentf5cf3ce commitfaea083
1 file changed
+5
-1
lines changedLines changed: 5 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1774 | 1774 |
| |
1775 | 1775 |
| |
1776 | 1776 |
| |
1777 |
| - | |
| 1777 | + | |
| 1778 | + | |
| 1779 | + | |
1778 | 1780 |
| |
1779 | 1781 |
| |
1780 | 1782 |
| |
1781 | 1783 |
| |
1782 | 1784 |
| |
1783 | 1785 |
| |
1784 | 1786 |
| |
| 1787 | + | |
| 1788 | + | |
1785 | 1789 |
| |
1786 | 1790 |
| |
1787 | 1791 |
| |
|
0 commit comments
Comments
(0)