mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Improvements to EXPLAIN QUERY PLAN formatting. The MULTI-INDEX OR now shows
a separate "INDEX" subtree for each index. SCALAR SUBQUERY entries provide a subquery number that is related back to the .selecttrace output. FossilOrigin-Name: 7153552bac51295c56a1c42ca79d57195851e232509f9e9610375692f48c7e86
This commit is contained in:
@ -267,8 +267,10 @@ do_eqp_test 7.2 {
|
||||
QUERY PLAN
|
||||
|--SCAN TABLE t1
|
||||
`--MULTI-INDEX OR
|
||||
|--SEARCH TABLE t2 USING INDEX t2xy (x=? AND y=?)
|
||||
`--SEARCH TABLE t2 USING INDEX t2xy (x=? AND y=?)
|
||||
|--INDEX 1
|
||||
| `--SEARCH TABLE t2 USING INDEX t2xy (x=? AND y=?)
|
||||
`--INDEX 2
|
||||
`--SEARCH TABLE t2 USING INDEX t2xy (x=? AND y=?)
|
||||
}
|
||||
|
||||
do_execsql_test 7.3 {
|
||||
|
Reference in New Issue
Block a user