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 /ext/session | |
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 'ext/session')
-rw-r--r-- | ext/session/session8.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session8.test b/ext/session/session8.test index 9f70fe282..884da0e77 100644 --- a/ext/session/session8.test +++ b/ext/session/session8.test @@ -63,7 +63,7 @@ proc do_then_undo {tn sql} { do_execsql_test 1.1 { CREATE TABLE t1(a PRIMARY KEY, b); INSERT INTO t1 VALUES(1, 2); - INSERT INTO t1 VALUES("abc", "xyz"); + INSERT INTO t1 VALUES('abc', 'xyz'); } do_then_undo 1.2 { INSERT INTO t1 VALUES(3, 4); } do_then_undo 1.3 { DELETE FROM t1 WHERE b=2; } |