diff options
author | drh <> | 2022-01-16 19:11:13 +0000 |
---|---|---|
committer | drh <> | 2022-01-16 19:11:13 +0000 |
commit | 7d44b22d45a55a2783a32e67d5bd4487fcb4d00c (patch) | |
tree | 3b5ed9d462176b8c55191c805027f48cfa4a4200 /test/subquery.test | |
parent | 72e30421c89695319fa43de906a70ff862fcfe89 (diff) | |
download | sqlite-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/subquery.test')
-rw-r--r-- | test/subquery.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/subquery.test b/test/subquery.test index e3b4281ed..a048f9ed4 100644 --- a/test/subquery.test +++ b/test/subquery.test @@ -477,7 +477,7 @@ do_test subquery-5.1 { INSERT INTO t5 VALUES(3,33); INSERT INTO t5 VALUES(4,44); SELECT b FROM t5 WHERE a IN - (SELECT callcnt(y)+0 FROM t4 WHERE x="two") + (SELECT callcnt(y)+0 FROM t4 WHERE x='two') } } {22} do_test subquery-5.2 { |