diff options
author | drh <drh@noemail.net> | 2019-09-02 01:25:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-09-02 01:25:07 +0000 |
commit | 0167ef202b2279af622956a4a1a073531759c216 (patch) | |
tree | 17441e7cbddc44c60eef796906cd058c9155990a /src/expr.c | |
parent | bffdd636339b32c706253e8c791ccca8b3f88f19 (diff) | |
download | sqlite-0167ef202b2279af622956a4a1a073531759c216.tar.gz sqlite-0167ef202b2279af622956a4a1a073531759c216.zip |
Fix an obsolete comment that defines the meaning of one of the parameters
to the sqlite3FindInIndex() subroutine. No changes to code.
FossilOrigin-Name: 0c946f0846b2835f8facca806a4d4ecc2b2e97343de245a0d91716d998b2a829
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 622024eb2..fabb99cda 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2399,7 +2399,7 @@ static int sqlite3InRhsIsConstant(Expr *pIn){ #ifndef SQLITE_OMIT_SUBQUERY int sqlite3FindInIndex( Parse *pParse, /* Parsing context */ - Expr *pX, /* The right-hand side (RHS) of the IN operator */ + Expr *pX, /* The IN expression */ u32 inFlags, /* IN_INDEX_LOOP, _MEMBERSHIP, and/or _NOOP_OK */ int *prRhsHasNull, /* Register holding NULL status. See notes */ int *aiMap, /* Mapping from Index fields to RHS fields */ |