1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-19 21:43:15 +03:00

Fix a typo in a comment. No changes to code.

FossilOrigin-Name: ee4b74250ad7a4061421d44b490cb79f649b3720
This commit is contained in:
drh
2015-05-16 18:31:44 +00:00
parent 8dd3ff1fb5
commit e655a0e34e
3 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
C Improve\sthe\sclean\starget\sin\sthe\sMSVC\smakefile. C Fix\sa\stypo\sin\sa\scomment.\s\sNo\schanges\sto\scode.
D 2015-05-16T03:41:41.012 D 2015-05-16T18:31:44.355
F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
F Makefile.in edfc69769e613a6359c42c06ea1d42c3bece1736 F Makefile.in edfc69769e613a6359c42c06ea1d42c3bece1736
F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -307,7 +307,7 @@ F src/vxworks.h c18586c8edc1bddbc15c004fa16aeb1e1342b4fb
F src/wal.c ce2cb2d06faab54d1bce3e739bec79e063dd9113 F src/wal.c ce2cb2d06faab54d1bce3e739bec79e063dd9113
F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4 F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4
F src/walker.c c253b95b4ee44b21c406e2a1052636c31ea27804 F src/walker.c c253b95b4ee44b21c406e2a1052636c31ea27804
F src/where.c 8b319f2a966ee7f88889fe500448e1e746aed998 F src/where.c 430ae75d8850ea9e3c7ceba8e05adb105300ddb4
F src/whereInt.h a6f5a762bc1b4b1c76e1cea79976b437ac35a435 F src/whereInt.h a6f5a762bc1b4b1c76e1cea79976b437ac35a435
F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2
F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
@@ -1258,7 +1258,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
P 08f11980efa907728102065115a5bebd44be2419 P 2c1039d454e359b0eec3db2d4201b4ba7e543052
R 82f27f3e0722706c87aaa943b79923d2 R c540749c837ccfa9e646ed2d9c9c0493
U mistachkin U drh
Z 555f5fa7f01030a921d58a611fdef8ff Z 98006a9bc56782e174c039d9f287e37a

View File

@@ -1 +1 @@
2c1039d454e359b0eec3db2d4201b4ba7e543052 ee4b74250ad7a4061421d44b490cb79f649b3720

View File

@@ -636,7 +636,7 @@ static void exprAnalyzeAll(
** In order for the operator to be optimizible, the RHS must be a string ** In order for the operator to be optimizible, the RHS must be a string
** literal that does not begin with a wildcard. The LHS must be a column ** literal that does not begin with a wildcard. The LHS must be a column
** that may only be NULL, a string, or a BLOB, never a number. (This means ** that may only be NULL, a string, or a BLOB, never a number. (This means
** that virtual tables cannot participate in the LIKE optimization.) If the ** that virtual tables cannot participate in the LIKE optimization.) The
** collating sequence for the column on the LHS must be appropriate for ** collating sequence for the column on the LHS must be appropriate for
** the operator. ** the operator.
*/ */