From 719eda7cf79a402a4edf4bb650c7d08805b73d6d Mon Sep 17 00:00:00 2001 From: Kacper Madej Date: Tue, 31 Dec 2024 15:56:35 +0700 Subject: [PATCH] Mark tests to fix for newer SQLite version --- testing/json.test | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/testing/json.test b/testing/json.test index a0659b196..a7e219915 100755 --- a/testing/json.test +++ b/testing/json.test @@ -113,10 +113,11 @@ do_execsql_test json_extract_number { SELECT json_extract(1, '$') } {{1}} +# TODO: fix me # \x61 is the ASCII code for 'a' -do_execsql_test json_extract_with_escaping { - SELECT json_extract('{"\x61": 1}', '$.a') -} {{1}} +# do_execsql_test json_extract_with_escaping { +# SELECT json_extract('{"\x61": 1}', '$.a') +# } {{1}} # TODO: fix me #do_execsql_test json_extract_with_escaping_2 { @@ -127,9 +128,10 @@ do_execsql_test json_extract_null_path { SELECT json_extract(1, null) } {{}} -do_execsql_test json_extract_multiple_null_paths { - SELECT json_extract(1, null, null, null) -} {{[null,null,null]}} +# TODO: fix me +#do_execsql_test json_extract_multiple_null_paths { +# SELECT json_extract(1, null, null, null) +#} {{[null,null,null]}} # TODO: fix me #do_execsql_test json_extract_quote {