diff options
author | larrybr <larrybr@noemail.net> | 2023-06-07 17:03:22 +0000 |
---|---|---|
committer | larrybr <larrybr@noemail.net> | 2023-06-07 17:03:22 +0000 |
commit | 55be21647e12dce5f45b5b361496337bf346c468 (patch) | |
tree | 161599efdc1ad251f1bf6a0258f445deaee91c8d /src/expr.c | |
parent | bc91738e665a6d1d18917da69df3eccbfc6e92c4 (diff) | |
parent | c5a5a54c51cac6452a29e4a7761165c06cc9abc3 (diff) | |
download | sqlite-55be21647e12dce5f45b5b361496337bf346c468.tar.gz sqlite-55be21647e12dce5f45b5b361496337bf346c468.zip |
Fix straggler misspellings and tidy the custom dictionary. Also include pickups from [forum:/info/c61fb09afd|forum post c61fb09afd].
FossilOrigin-Name: 8c291d99946eb32b20b743921202f9c7cfb716268ff526817b27adbb7942e40b
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/expr.c b/src/expr.c index bca83aa0b..795f65052 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2785,7 +2785,7 @@ static int sqlite3InRhsIsConstant(Expr *pIn){ ** IN_INDEX_INDEX_ASC - The cursor was opened on an ascending index. ** IN_INDEX_INDEX_DESC - The cursor was opened on a descending index. ** IN_INDEX_EPH - The cursor was opened on a specially created and -** populated epheremal table. +** populated ephemeral table. ** IN_INDEX_NOOP - No cursor was allocated. The IN operator must be ** implemented as a sequence of comparisons. ** @@ -2810,12 +2810,12 @@ static int sqlite3InRhsIsConstant(Expr *pIn){ ** ** When IN_INDEX_LOOP is used (and the b-tree will be used to iterate ** through the set members) then the b-tree must not contain duplicates. -** An epheremal table will be created unless the selected columns are guaranteed +** An ephemeral table will be created unless the selected columns are guaranteed ** to be unique - either because it is an INTEGER PRIMARY KEY or due to ** a UNIQUE constraint or index. ** ** When IN_INDEX_MEMBERSHIP is used (and the b-tree will be used -** for fast set membership tests) then an epheremal table must +** for fast set membership tests) then an ephemeral table must ** be used unless <columns> is a single INTEGER PRIMARY KEY column or an ** index can be found with the specified <columns> as its left-most. ** @@ -4307,7 +4307,7 @@ expr_code_doover: if( ExprHasProperty(pExpr, EP_FixedCol) ){ /* This COLUMN expression is really a constant due to WHERE clause ** constraints, and that constant is coded by the pExpr->pLeft - ** expresssion. However, make sure the constant has the correct + ** expression. However, make sure the constant has the correct ** datatype by applying the Affinity of the table column to the ** constant. */ @@ -5991,7 +5991,7 @@ int sqlite3ExprImpliesExpr( return 0; } -/* This is a helper functino to impliesNotNullRow(). In this routine, +/* This is a helper function to impliesNotNullRow(). In this routine, ** set pWalker->eCode to one only if *both* of the input expressions ** separately have the implies-not-null-row property. */ |