Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
When using LDI with columnstore_use_import_for_batchinsert = ON/ALWAYS (cpimport), MariaDB will crash if the values contain a curly brace and it is going into an TEXT field.
MariaDB [json]> LOAD DATA INFILE '/tmp/MOCK_DATA.csv' into table test6 FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n'; |
ERROR 2013 (HY000): Lost connection to MySQL server during query |
MariaDB [json]> show create table test6;
|
+-------+-------------------------------------------------------------------------------------------+
|
| Table | Create Table |
|
+-------+-------------------------------------------------------------------------------------------+
|
| test6 | CREATE TABLE `test6` (
|
`id` text DEFAULT NULL
|
) ENGINE=Columnstore DEFAULT CHARSET=utf8 |
|
+-------+-------------------------------------------------------------------------------------------+
|