1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Json1 tests are working. Builds without FTS5 enabled. Still some problems

building with FTS5.

FossilOrigin-Name: 2928f8e87d2e5d121e6e7e5993cbb773bb2b0603
This commit is contained in:
drh
2015-10-08 23:37:00 +00:00
parent d3b90a2e41
commit c306e08ad5
10 changed files with 64 additions and 36 deletions

View File

@ -15,7 +15,11 @@
set testdir [file dirname $argv0]
source $testdir/tester.tcl
load_static_extension db json
ifcapable !json1 {
finish_test
return
}
do_execsql_test json101-1.1.00 {
SELECT json_array(1,2.5,null,'hello');
} {[1,2.5,null,"hello"]}