1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Fix typos in comments. No changes to code.

FossilOrigin-Name: 77c692a6704cd877ba35d0afb774ab9b46364d59
This commit is contained in:
mistachkin
2016-07-10 19:35:10 +00:00
parent e39cd91aea
commit e234cfd11f
4 changed files with 11 additions and 11 deletions

View File

@ -569,7 +569,7 @@ static int codeAllEqualityTerms(
** expression: "x>='ABC' AND x<'abd'". But this requires that the range
** scan loop run twice, once for strings and a second time for BLOBs.
** The OP_String opcodes on the second pass convert the upper and lower
** bound string contants to blobs. This routine makes the necessary changes
** bound string constants to blobs. This routine makes the necessary changes
** to the OP_String opcodes for that to happen.
**
** Except, of course, if SQLITE_LIKE_DOESNT_MATCH_BLOBS is defined, then