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:
@ -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:
|
||||
#
|
||||
|
Reference in New Issue
Block a user