1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Minor fix to test/index9.test so that it can be invoked with other

index tests using a wildcard.

FossilOrigin-Name: ccbd6e774903f9202f9311954979f6fcc3b13eba1f3402a549a7aee6ed1d55eb
This commit is contained in:
drh
2022-06-08 12:35:39 +00:00
parent 644817721e
commit f6bee94e22
3 changed files with 8 additions and 7 deletions

View File

@ -34,6 +34,7 @@ do_execsql_test 1.0 {
CREATE TABLE t1(x, y);
CREATE INDEX t1x ON t1(x) WHERE y=45;
}
unset -nocomplain a
set y [expr 45]
do_sqluses_test 1.1 { SELECT * FROM t1 WHERE x=? AND y=$y } {t1 t1x}
set y [expr 45.1]