Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
6.2.3, 22.08.7
Description
To reproduce
Enabled insert cache
columnstore_cache_use_import = on
With disabled columnstore_cache_use_import
and with varchar it works fine.
Drop table if exists t1 ; |
CREATE TABLE t1(
|
`c1` text DEFAULT NULL
|
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
|
;
|
|
|
insert into t1 (c1) values ('Monty'); |
insert into t1 (c1) values ('Widenius'); |
select * from t1;
|