mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
Add test cases and fix a comment.
FossilOrigin-Name: 50f8ea37fb9647c4a9da2c269a4d6f54b10ce96b
This commit is contained in:
@@ -3994,10 +3994,10 @@ static int exprIdxCover(Walker *pWalker, Expr *pExpr){
|
||||
}
|
||||
|
||||
/*
|
||||
** Determine if an index on table iCur that contains the columns in
|
||||
** Bitmask m will cover the expression pExpr. Return true if the index
|
||||
** does cover the expression and false if the expression references
|
||||
** table columns that are not found in the index.
|
||||
** Determine if an index pIdx on table with cursor iCur contains will
|
||||
** the expression pExpr. Return true if the index does cover the
|
||||
** expression and false if the pExpr expression references table columns
|
||||
** that are not found in the index pIdx.
|
||||
**
|
||||
** An index covering an expression means that the expression can be
|
||||
** evaluated using only the index and without having to lookup the
|
||||
|
||||
Reference in New Issue
Block a user