Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
1.2
-
None
-
None
-
2018-13, 2018-14, 2018-15, 2018-16, 2018-17
Description
Steps to reproduce:
MariaDB [cs]> describe cs1;
|
+-------+---------+------+-----+---------+-------+
|
| Field | Type | Null | Key | Default | Extra |
|
+-------+---------+------+-----+---------+-------+
|
| i | int(11) | YES | | NULL | |
|
| it | int(11) | YES | | NULL | |
|
+-------+---------+------+-----+---------+-------+
|
2 rows in set (0.00 sec)
|
|
MariaDB [cs]> select * from cs1;
|
+------+------+
|
| i | it |
|
+------+------+
|
| 1 | 2 |
|
| 3 | 4 |
|
| 25 | 26 |
|
+------+------+
|
3 rows in set (0.01 sec)
|
|
select sum(i)+1 from cs1;
|
select concat('1',sum(i)) from cs1;
|
select not(sum(i)) from cs1;
|
Attachments
Issue Links
- is blocked by
-
MDEV-16842 Extended SELECT list contains unusable Item_func_sum when GROUP BY handler is used
- Closed
- relates to
-
MCOL-1520 Forked server crashes in Item_ident::print() for a Temptable_field.
- Closed