[MCOL-5335] JSON_DETAILED currently isn't supported Created: 2022-12-06  Updated: 2023-12-22

Status: Open
Project: MariaDB ColumnStore
Component/s: None
Affects Version/s: None
Fix Version/s: 23.10

Type: Bug Priority: Minor
Reporter: Allen Herrera Assignee: Leonid Fedorov
Resolution: Unresolved Votes: 0
Labels: beginner-friendly

Sprint: 2022-22, 2022-23, 2023-4, 2023-5, 2023-6, 2023-7, 2023-8, 2023-10, 2023-11

 Description   

Currently on CS 22.08.4, JSON_DETAILED does not work.

Docs: https://mariadb.com/kb/en/json_detailed/

Reproduce

CREATE TABLE `jsontest` (
  `a` int(11) DEFAULT NULL,
  `cVarchar` varchar(255) DEFAULT NULL,
  `cText` MEDIUMTEXT DEFAULT NULL
) ENGINE=Columnstore DEFAULT CHARSET=utf8mb3
 
SET @json = '
{"key1":"xxxx", "key2":[1, 2, 3]}
';
INSERT INTO jsontest VALUES (1, @json, @json);
 
SELECT cVarchar, JSON_DETAILED(cVarchar), cText, JSON_DETAILED(cText) from jsontest; -- MCS-1001: Function 'json_detailed' isn't supported.


Generated at Thu Feb 08 02:57:06 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.