Commit 837aa57f authored by Alexey Botchkov's avatar Alexey Botchkov

Test result fixed.

parent 2ebb1380
...@@ -659,19 +659,13 @@ JSON_EXTRACT('{"name":"value"}', '$.name') = 'value' ...@@ -659,19 +659,13 @@ 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
0 1
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
1 0
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
0 1
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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment