mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-11465 JSON_LENGTH returns incorrect length.
Item_func_json_length::val_int fixed.
This commit is contained in:
@ -292,3 +292,12 @@ json_depth('[[], {}]')
|
||||
select json_depth('[[[1,2,3],"s"], {}, []]');
|
||||
json_depth('[[[1,2,3],"s"], {}, []]')
|
||||
4
|
||||
select json_length('');
|
||||
json_length('')
|
||||
NULL
|
||||
select json_length('{}');
|
||||
json_length('{}')
|
||||
0
|
||||
select json_length('[1, 2, {"a": 3}]');
|
||||
json_length('[1, 2, {"a": 3}]')
|
||||
3
|
||||
|
Reference in New Issue
Block a user