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

Do not attempt to run test script analyze3.test as part of the "prepare" permutation.

FossilOrigin-Name: f7f13cb1bc699c034a3f5f7a2431c8055cb79e2a14d5e70e1fc5dd6dec00fb26
This commit is contained in:
dan
2020-08-27 14:53:47 +00:00
parent 60081a0382
commit ca3ee7e18a
3 changed files with 18 additions and 8 deletions

View File

@ -23,6 +23,16 @@ ifcapable !stat4 {
return
}
# This test cannot be run with the sqlite3_prepare() permutation, as it
# tests that stat4 data can be used to influence the plans of queries
# based on bound variable values. And this is not possible when using
# sqlite3_prepare() - as queries cannot be internally re-prepared after
# binding values are available.
if {[permutation]=="prepare"} {
finish_test
return
}
#----------------------------------------------------------------------
# Test Organization:
#