]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Make a trivial comment fix in where.c.
authordrh <drh@noemail.net>
Mon, 1 Jul 2013 10:38:35 +0000 (10:38 +0000)
committerdrh <drh@noemail.net>
Mon, 1 Jul 2013 10:38:35 +0000 (10:38 +0000)
FossilOrigin-Name: 0ffaab3b9c97f4dba0f0ca6e146c8dc2775f7b1c

manifest
manifest.uuid
src/where.c

index f2533c82111c12cea72c8d25e5681c3a16c39d80..281b26cde26833f63609cd5a27f449014b318e49 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\san\sissue\sin\sthe\scommand-line\sshell\swith\sCSV\simport\sof\srows\swith\nempty\scolumns.
-D 2013-06-30T20:24:26.524
+C Make\sa\strivial\scomment\sfix\sin\swhere.c.
+D 2013-07-01T10:38:35.899
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 5e41da95d92656a5004b03d3576e8b226858a28e
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -290,7 +290,7 @@ F src/vtab.c b05e5f1f4902461ba9f5fc49bb7eb7c3a0741a83
 F src/wal.c 7dc3966ef98b74422267e7e6e46e07ff6c6eb1b4
 F src/wal.h df01efe09c5cb8c8e391ff1715cca294f89668a4
 F src/walker.c 4fa43583d0a84b48f93b1e88f11adf2065be4e73
-F src/where.c 2c447e377397c9e6cea7d701f89614e093247dba
+F src/where.c 789d319334c44d13be7a232ccced9646e8e85748
 F test/8_3_names.test ebbb5cd36741350040fd28b432ceadf495be25b2
 F test/aggerror.test a867e273ef9e3d7919f03ef4f0e8c0d2767944f2
 F test/aggnested.test 45c0201e28045ad38a530b5a144b73cd4aa2cfd6
@@ -1098,7 +1098,7 @@ F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
 F tool/wherecosttest.c f407dc4c79786982a475261866a161cd007947ae
 F tool/win/sqlite.vsix 97894c2790eda7b5bce3cc79cb2a8ec2fde9b3ac
-P b003b2b2b6ddbfc6ec508b47904e6d095c5f6940
-R 39a21efdf5f6a4e71061941f354e0089
+P 60b65e5ee3828c2a814bf035b57b3e8681af9397
+R 3bd4c794e157d911cc3628c2a23029da
 U drh
-Z 6274137a1e64ba528f94c3f6862f706c
+Z aca7802d1aec7347f7fd3f712b301f29
index cb84db8b9ede148721a7828274355fdbd4523ef0..7dc86f81102db4560d317f27504d05f7d807b891 100644 (file)
@@ -1 +1 @@
-60b65e5ee3828c2a814bf035b57b3e8681af9397
\ No newline at end of file
+0ffaab3b9c97f4dba0f0ca6e146c8dc2775f7b1c
\ No newline at end of file
index f739853598f6f65a35adeebb3d5db615c8fe94bc..b743df72323cfac8ffbd775200f0df24ce270d75 100644 (file)
@@ -429,7 +429,7 @@ struct WhereInfo {
 ** The particular combination of bits in each WhereLoop help to
 ** determine the algorithm that WhereLoop represents.
 */
-#define WHERE_COLUMN_EQ    0x00000001  /* x=EXPR or x IN (...) or x IS NULL */
+#define WHERE_COLUMN_EQ    0x00000001  /* x=EXPR */
 #define WHERE_COLUMN_RANGE 0x00000002  /* x<EXPR and/or x>EXPR */
 #define WHERE_COLUMN_IN    0x00000004  /* x IN (...) */
 #define WHERE_COLUMN_NULL  0x00000008  /* x IS NULL */