mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Temporarily record wrong result for the MDEV-12604 JSON_EXTRACT test
This commit is contained in:
@@ -659,13 +659,19 @@ JSON_EXTRACT('{"name":"value"}', '$.name') = 'value'
|
|||||||
1
|
1
|
||||||
select JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = true;
|
select JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = true;
|
||||||
JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = true
|
JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = true
|
||||||
1
|
0
|
||||||
|
Warnings:
|
||||||
|
Warning 1292 Truncated incorrect DOUBLE value: 'true'
|
||||||
select JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = false;
|
select JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = false;
|
||||||
JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = false
|
JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = false
|
||||||
0
|
1
|
||||||
|
Warnings:
|
||||||
|
Warning 1292 Truncated incorrect DOUBLE value: 'true'
|
||||||
select JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = 1;
|
select JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = 1;
|
||||||
JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = 1
|
JSON_EXTRACT('{\"asdf\":true}', "$.\"asdf\"") = 1
|
||||||
1
|
0
|
||||||
|
Warnings:
|
||||||
|
Warning 1292 Truncated incorrect DOUBLE value: 'true'
|
||||||
select JSON_EXTRACT('{\"input1\":\"\\u00f6\"}', '$.\"input1\"');
|
select JSON_EXTRACT('{\"input1\":\"\\u00f6\"}', '$.\"input1\"');
|
||||||
JSON_EXTRACT('{\"input1\":\"\\u00f6\"}', '$.\"input1\"')
|
JSON_EXTRACT('{\"input1\":\"\\u00f6\"}', '$.\"input1\"')
|
||||||
"\u00f6"
|
"\u00f6"
|
||||||
|
Reference in New Issue
Block a user