aboutsummaryrefslogtreecommitdiff
path: root/test/in.test
diff options
context:
space:
mode:
authordrh <>2022-01-16 19:11:13 +0000
committerdrh <>2022-01-16 19:11:13 +0000
commit7d44b22d45a55a2783a32e67d5bd4487fcb4d00c (patch)
tree3b5ed9d462176b8c55191c805027f48cfa4a4200 /test/in.test
parent72e30421c89695319fa43de906a70ff862fcfe89 (diff)
downloadsqlite-7d44b22d45a55a2783a32e67d5bd4487fcb4d00c.tar.gz
sqlite-7d44b22d45a55a2783a32e67d5bd4487fcb4d00c.zip
Fix test cases so that they all still work even with -DSQLITE_DQS=0.
FossilOrigin-Name: 4883776669ee2f2310ea82b0d6df4d008eebaa7cb252102539cf21a635402ebb
Diffstat (limited to 'test/in.test')
-rw-r--r--test/in.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/in.test b/test/in.test
index efbfbd037..b0eb371cb 100644
--- a/test/in.test
+++ b/test/in.test
@@ -281,12 +281,13 @@ do_test in-7.8.2 {
db status step
} {0}
-do_test in-8.1 {
+do_test in-8.3 {
execsql {
SELECT b FROM t1 WHERE a IN ('hello','there')
}
} {world}
-do_test in-8.2 {
+do_test in-8.4 {
+ sqlite3_db_config db SQLITE_DBCONFIG_DQS_DML 1
execsql {
SELECT b FROM t1 WHERE a IN ("hello",'there')
}