@@ -20,8 +20,18 @@ select json_insert(@obj, '$.meta', 1);
2020ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
2121select json_compact(@arr);
2222ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
23+ select json_contains(@obj, '"d"', '$.c');
24+ ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
25+ select json_contains_path(@obj, 'one', '$.c');
26+ ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
27+ select json_exists(@obj, '$.c');
28+ ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
29+ select json_extract(@obj, '$.c');
30+ ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
2331select json_detailed(@arr);
2432ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
33+ select json_keys(@obj, '$.c');
34+ ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
2535select json_loose(@arr);
2636ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
2737select json_merge(@obj, @arr);
@@ -36,6 +46,8 @@ select json_replace(@obj,'$.foo',1);
3646ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
3747select json_set(@arr,'$[1000]',1);
3848ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
49+ select ST_AsTEXT(ST_GeomFromGeoJSON(JSON_OBJECT("type", "Point", "coordinates", @arr),2)) as exp;
50+ ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
3951SET debug_dbug= @old_debug;
4052disconnect u;
4153connection default;
0 commit comments