mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-24 22:22:08 +03:00
Fix test cases so that they work with the new EXPLAIN QUERY PLAN output
format. Only some of the cases have been fixed. This is an incremental check-in. FossilOrigin-Name: 5f0e803e33aa557865d5fc830d9202d628de9a94c9757058ca48f1a560702cd3
This commit is contained in:
@ -121,10 +121,11 @@ do_execsql_test 6.0 {
|
||||
ifcapable stat4 {
|
||||
do_eqp_test 6.1 {
|
||||
SELECT DISTINCT c FROM t3 WHERE b BETWEEN '.xx..' AND '.xxxx';
|
||||
} {
|
||||
0 0 0 {SEARCH TABLE t3 USING INDEX i3 (ANY(a) AND b>? AND b<?)}
|
||||
0 0 0 {USE TEMP B-TREE FOR DISTINCT}
|
||||
}
|
||||
} [string map {"\n " \n} {
|
||||
QUERY PLAN
|
||||
|--SEARCH TABLE t3 USING INDEX i3 (ANY(a) AND b>? AND b<?)
|
||||
`--USE TEMP B-TREE FOR DISTINCT
|
||||
}]
|
||||
}
|
||||
|
||||
do_faultsim_test 6 -faults oom* -body {
|
||||
|
Reference in New Issue
Block a user