mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '11.0' into 11.1
This commit is contained in:
@@ -1449,6 +1449,13 @@ JSON_LOOSE(JSON_EXTRACT(a, '$**.analyzing_range_alternatives'))
|
||||
[{"range_scan_alternatives": [{"index": "a_b", "ranges": ["2 <= a <= 2 AND 4 <= b <= 4", "123"], "rowid_ordered": true, "using_mrr": false, "index_only": true, "rows": 1, "cost": 1.1752, "chosen": true}], "analyzing_roworder_intersect": {"cause": "too few roworder scans"}, "analyzing_index_merge_union": [], "test_one_line_array": ["123"]}]
|
||||
drop table t200;
|
||||
#
|
||||
# MDEV-24538: JSON_LENGTH does not return error upon wrong number of parameters
|
||||
#
|
||||
SELECT JSON_LENGTH('{"a":"b"}','$','$', 'foo');
|
||||
ERROR 42000: Incorrect parameter count in the call to native function 'json_length'
|
||||
SELECT JSON_LENGTH();
|
||||
ERROR 42000: Incorrect parameter count in the call to native function 'JSON_LENGTH'
|
||||
#
|
||||
# End of 10.4 tests
|
||||
#
|
||||
#
|
||||
@@ -1667,7 +1674,18 @@ DROP TABLE t;
|
||||
# End of 10.6 tests
|
||||
#
|
||||
#
|
||||
# Beginning of 10.9 tests
|
||||
# MDEV-31147 json_normalize does not work correctly with MSAN build
|
||||
#
|
||||
CREATE TABLE t1 (val JSON);
|
||||
ALTER TABLE t1 ADD COLUMN normalized_json JSON AS (JSON_NORMALIZE(val));
|
||||
INSERT INTO t1 (val) VALUES ('15');
|
||||
SELECT * FROM t1;
|
||||
val normalized_json
|
||||
15 1.5E1
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# End of 10.8 tests
|
||||
#
|
||||
#
|
||||
# MDEV-27677: Implement JSON_OVERLAPS()
|
||||
#
|
||||
|
Reference in New Issue
Block a user