Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
The following testcase crashes:
create table t1(a int);
|
insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
|
 |
select database();
|
connect (con1,localhost,root,,*NO-ONE*);
|
connection con1;
|
select database();
|
analyze format=json select * from test.t1 where t1.a<5;
|
disconnect con1;
|
connection default;
|