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/select.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/select.c')
-rw-r--r-- | src/select.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/select.c b/src/select.c index 388c856a8..b492d5374 100644 --- a/src/select.c +++ b/src/select.c @@ -869,7 +869,7 @@ static void codeOffset( ** The returned value in this case is a copy of parameter iTab. ** ** WHERE_DISTINCT_ORDERED: -** In this case rows are being delivered sorted order. The ephermal +** In this case rows are being delivered sorted order. The ephemeral ** table is not required. Instead, the current set of values ** is compared against previous row. If they match, the new row ** is not distinct and control jumps to VM address addrRepeat. Otherwise, @@ -4723,8 +4723,7 @@ static int flattenSubquery( } } - /* Finially, delete what is left of the subquery and return - ** success. + /* Finally, delete what is left of the subquery and return success. */ sqlite3AggInfoPersistWalkerInit(&w, pParse); sqlite3WalkSelect(&w,pSub1); |