diff options
Diffstat (limited to 'test/json106.test')
-rw-r--r-- | test/json106.test | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/json106.test b/test/json106.test index 23fa028..06859a1 100644 --- a/test/json106.test +++ b/test/json106.test @@ -67,6 +67,12 @@ for {set ii 1} {$ii<=5000} {incr ii} { FROM t1, kv WHERE p->>key IS NOT val } 0 + do_execsql_test $ii.8 { + SELECT j0 FROM t1 WHERE json(j0)!=json(json_pretty(j0)); + } {} + do_execsql_test $ii.9 { + SELECT j5 FROM t1 WHERE json(j5)!=json(json_pretty(j5)); + } {} } |