Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.5
Description
Case repeats only in 10.5:
Test case:
CREATE VIEW v1 AS SELECT JSON_OBJECT(_LATIN1 'plugin', _LATIN1'unix_socket') as v1_json; |
SELECT JSON_ARRAYAGG(v1_json) FROM v1; |
DROP VIEW v1; |
|
CREATE VIEW v1 AS SELECT JSON_OBJECT('plugin','unix_socket') as v1_json; |
SELECT JSON_ARRAYAGG(v1_json) FROM v1; |
DROP VIEW v1; |
Expected result:
JSON_ARRAYAGG(v1_json)
|
[{"plugin": "unix_socket"}] |
|
JSON_ARRAYAGG(v1_json)
|
[{"plugin": "unix_socket"}] |
Actual result:
JSON_ARRAYAGG(v1_json)
|
["{\"plugin\": \"unix_socket\"}"] |
|
JSON_ARRAYAGG(v1_json)
|
["{\"plugin\": \"unix_socket\"}"] |
Attachments
Issue Links
- relates to
-
MDEV-30405 check JSON data transfer
- Stalled