Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
This SQL script does not work to completion:
use test; |
drop table if exists t; |
create table t (x longtext) engine = columnstore; |
insert into t(x) select concat(seq, repeat('zuka',4000000)) from seq_1_to_5; |
select substr(x,1,10) from test.t limit 10; |
If you change sequence upper limit to 4, it runs OK.