Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.4.3
-
None
-
2020-7
Description
create table t1 (a int, b int) engine=columnstore;
insert into t1 values (1,2), (1,3), (2,4), (2,5), (3,10);
create view v1 (c,d,e,f) as select a,b,
(select a+2 from t1 limit 1) e1, (select a from t1 limit 1) f1 from t1;
select * from v1 order by 1,2,3,4;
ERROR 1815 (HY000): Internal error: column is not found in info map.
This is a regression since 1.2.6