]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Corrections to comments in expr.c. No code changes.
authordrh <drh@noemail.net>
Mon, 1 Jun 2015 18:13:16 +0000 (18:13 +0000)
committerdrh <drh@noemail.net>
Mon, 1 Jun 2015 18:13:16 +0000 (18:13 +0000)
FossilOrigin-Name: f925389eaf5bf8962a28fcaa652b75caa606efba

manifest
manifest.uuid
src/expr.c

index d2a7b5d5ff00808c5809829554d591be04eccdea..879a00fb946a380d2843fc52f9d5b9d2269430e5 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Typo\sfixes\sand\sadditional\sbackground\sinformation\sin\sREADME.md.
-D 2015-06-01T11:10:39.796
+C Corrections\sto\scomments\sin\sexpr.c.\s\sNo\scode\schanges.
+D 2015-06-01T18:13:16.094
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 994bab32a3a69e0c35bd148b65cde49879772964
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -202,7 +202,7 @@ F src/ctime.c 5a0b735dc95604766f5dac73973658eef782ee8b
 F src/date.c e4d50b3283696836ec1036b695ead9a19e37a5ac
 F src/dbstat.c f402e77e25089c6003d0c60b3233b9b3947d599a
 F src/delete.c 37964e6c1d73ff49cbea9ff690c9605fb15f600e
-F src/expr.c 3fb2ab3ab69d15b4b75ae53fceb4e317f64cb306
+F src/expr.c 5de0af7c63a3722d4eb5335f81841f386daa4c20
 F src/fault.c 160a0c015b6c2629d3899ed2daf63d75754a32bb
 F src/fkey.c c9b63a217d86582c22121699a47f22f524608869
 F src/func.c 5b8b8e77a0fb644eaf8947d413804622e32692b6
@@ -1281,7 +1281,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P c864ff912db8bc0a3c3ecc1ceac61a25332e76c5
-R 36a9006d323883fc8b82cd3617fe7735
+P 9b8e5823bccf69f5cdedd8655e75df6e9718b809
+R 79c21798380eea59e3e40be5d7ba64b0
 U drh
-Z 5f89713174f72e7e8f725e1fe0117a4f
+Z 59ba12ae4d822d8c7d37e1e41f2f9dfd
index a45b93450f0cf79e1f0564b456338c4cd08a58f0..f27f0a326096ebb165e7f145d7c5bfb5daa64158 100644 (file)
@@ -1 +1 @@
-9b8e5823bccf69f5cdedd8655e75df6e9718b809
\ No newline at end of file
+f925389eaf5bf8962a28fcaa652b75caa606efba
\ No newline at end of file
index 7e27ba99f56491b266d09f744acf12a20fc605d9..6c22f75d098f13011c118e3723092cb56da65aca 100644 (file)
@@ -1268,7 +1268,7 @@ u32 sqlite3ExprListFlags(const ExprList *pList){
 **
 **     sqlite3ExprIsConstant()                  pWalker->eCode==1
 **     sqlite3ExprIsConstantNotJoin()           pWalker->eCode==2
-**     sqlite3ExprRefOneTableOnly()             pWalker->eCode==3
+**     sqlite3ExprIsTableConstant()             pWalker->eCode==3
 **     sqlite3ExprIsConstantOrFunction()        pWalker->eCode==4 or 5
 **
 ** In all cases, the callbacks set Walker.eCode=0 and abort if the expression
@@ -1376,7 +1376,7 @@ int sqlite3ExprIsConstantNotJoin(Expr *p){
 }
 
 /*
-** Walk an expression tree.  Return non-zero if the expression constant
+** Walk an expression tree.  Return non-zero if the expression is constant
 ** for any single row of the table with cursor iCur.  In other words, the
 ** expression must not refer to any non-deterministic function nor any
 ** table other than iCur.