mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix test cases so that they all still work even with -DSQLITE_DQS=0.
FossilOrigin-Name: 4883776669ee2f2310ea82b0d6df4d008eebaa7cb252102539cf21a635402ebb
This commit is contained in:
@ -173,7 +173,7 @@ do_execsql_test 6.1.1 {
|
||||
CREATE VIRTUAL TABLE t1 USING fts4(
|
||||
poiCategory, poiCategoryId, notindexed=poiCategoryId
|
||||
);
|
||||
INSERT INTO t1(poiCategory, poiCategoryId) values ("Restaurant", 6021);
|
||||
INSERT INTO t1(poiCategory, poiCategoryId) values ('Restaurant', 6021);
|
||||
}
|
||||
|
||||
do_execsql_test 6.1.2 {
|
||||
@ -194,7 +194,7 @@ do_execsql_test 6.2.1 {
|
||||
CREATE VIRTUAL TABLE t1 USING fts4(
|
||||
poiCategory, poiCategoryId, notindexed=poiCategory
|
||||
);
|
||||
INSERT INTO t1(poiCategory, poiCategoryId) values ("Restaurant", 6021);
|
||||
INSERT INTO t1(poiCategory, poiCategoryId) values ('Restaurant', 6021);
|
||||
}
|
||||
|
||||
do_execsql_test 6.2.2 {
|
||||
|
Reference in New Issue
Block a user