1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix a problem in vtab1.test causing it to fail when run with any permutation that executes SQL within the tcl "sqlite3" command.

FossilOrigin-Name: 006db555260273209933371d17afb33d557baa68
This commit is contained in:
dan
2012-06-08 11:48:40 +00:00
parent 155812d318
commit b6a69a66e5
3 changed files with 12 additions and 8 deletions

View File

@ -1222,6 +1222,10 @@ do_test vtab1-17.1 {
}
} {}
do_test vtab1-17.2 {
execsql { DELETE FROM sqlite_master WHERE sql LIKE 'insert%' }
} {}
#-------------------------------------------------------------------------
# The following tests - vtab1-18.* - test that the optimization of LIKE
# constraints in where.c plays well with virtual tables.