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;
|
With 23.10.0 testcase works.
+---------------------+---------+
| Variable_name | Value |
+---------------------+---------+
+---------------------+---------+
+---------------------------+-------+
| Variable_name | Value |
+---------------------------+-------+
| columnstore_cache_inserts | ON |
+---------------------------+-------+
[..]
MariaDB [d1]> select * from t1;
+----------+
| c1 |
+----------+
| Monty |
| Widenius |
+----------+