Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
5.5.1
-
Ubuntu 20.04
-
2021-5, 2021-6, 2021-7
Description
The following query has a count(distinct) followed by statistics aggregates in a join. This will cause an assert in Ubuntu 20.04.
select 'q34', l_shipmode, count(distinct l_orderkey), std(l_partkey*10), stddev(l_partkey*10), stddev_pop(l_partkey*10) from lineitem, part where l_orderkey > 1220 and l_orderkey < 1260 and l_partkey = p_partkey group by 1,2 order by 1,2; |
ERROR 1815 (HY000): Internal error: Lost connection to ExeMgr. Please contact your administrator |