1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Fix the cursor hint mechanism so that it does the right thing for indexed

lookups.

FossilOrigin-Name: 581e3d4988e98975fea5daaeb9f854c54a4976b7
This commit is contained in:
drh
2015-08-14 18:50:04 +00:00
parent 0df57012da
commit 2f2b02785a
6 changed files with 91 additions and 34 deletions

View File

@@ -2994,6 +2994,7 @@ struct Walker {
int iCur; /* A cursor number */
SrcList *pSrcList; /* FROM clause */
struct SrcCount *pSrcCount; /* Counting column references */
struct CCurHint *pCCurHint; /* Used by codeCursorHint() */
} u;
};