Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.1.1, 1.1.2
-
None
-
None
-
2017-24, 2017-25
Description
To reproduce:
create database b2; |
|
use b2; |
|
CREATE TABLE `t1` ( |
`ID` int(11) DEFAULT NULL |
) ENGINE=Columnstore;
|
|
CREATE TABLE `t2` ( |
`ID` int(11) DEFAULT NULL, |
`image` blob DEFAULT NULL |
) ENGINE=Columnstore;
|
|
select (select id from t2 where id = t1.id) as s1 ,(select image from t2 where id = t1.id ) as s2, |
(select image from t2 where id = t1.id ) as s3 from t1; |
|
ERROR 1815 (HY000): Internal error: InetStreamSocket::readToMagic: Remote is closed |
|