1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Minor enhancements to the auxiliary information added to EXPLAIN output with

SQLITE_EXPLAIN_ENABLE_COMMENTS.

FossilOrigin-Name: 0d1328e33ca761eddcf8a50e8e83c997861e9047
This commit is contained in:
drh
2013-11-12 20:18:14 +00:00
parent e54df42d87
commit 5e6790cb15
5 changed files with 16 additions and 13 deletions

View File

@@ -113,7 +113,8 @@ struct WhereLoop {
LogEst nOut; /* Estimated number of output rows */
union {
struct { /* Information for internal btree tables */
int nEq; /* Number of equality constraints */
u16 nEq; /* Number of equality constraints */
u16 nSkip; /* Number of initial index columns to skip */
Index *pIndex; /* Index used, or NULL */
} btree;
struct { /* Information for virtual tables */