1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Modify test scripts to work when SQLITE_OMIT_SUBQUERY (along with other OMIT macros) is defined. (CVS 2251)

FossilOrigin-Name: bb0254ab14417f0ab40f10f37cb63a60507f070a
This commit is contained in:
danielk1977
2005-01-21 03:12:14 +00:00
parent 801845fb2d
commit 3e8c37e7f8
33 changed files with 897 additions and 677 deletions

View File

@ -186,11 +186,13 @@ do_test null-8.1 {
SELECT x FROM t4 WHERE y=NULL;
}
} {}
do_test null-8.2 {
execsql {
SELECT x FROM t4 WHERE y IN (33,NULL);
}
} {}
ifcapable subquery {
do_test null-8.2 {
execsql {
SELECT x FROM t4 WHERE y IN (33,NULL);
}
} {}
}
do_test null-8.3 {
execsql {
SELECT x FROM t4 WHERE y<33 ORDER BY x;
@ -212,11 +214,13 @@ do_test null-8.11 {
SELECT x FROM t4 WHERE y=NULL;
}
} {}
do_test null-8.12 {
execsql {
SELECT x FROM t4 WHERE y IN (33,NULL);
}
} {}
ifcapable subquery {
do_test null-8.12 {
execsql {
SELECT x FROM t4 WHERE y IN (33,NULL);
}
} {}
}
do_test null-8.13 {
execsql {
SELECT x FROM t4 WHERE y<33 ORDER BY x;