]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment typo on sqlite3ExprAlloc(). No code changes.
authordrh <drh@noemail.net>
Sun, 23 Aug 2015 20:48:29 +0000 (20:48 +0000)
committerdrh <drh@noemail.net>
Sun, 23 Aug 2015 20:48:29 +0000 (20:48 +0000)
FossilOrigin-Name: 518d6220a12fb1289f699ef0821e6adfcd286ed0

manifest
manifest.uuid
src/expr.c

index 7429fea7cd9a39e9973c89ea6b2d6cd2dc858909..b3470ed66a05d17458317bcc8f9197821c72c3e6 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sminor\sglitches\sin\sthe\sjson1.c\sextension,\smostly\shaving\sto\sdo\swith\sOOM\nbehavior.
-D 2015-08-23T20:44:59.358
+C Fix\sa\scomment\stypo\son\ssqlite3ExprAlloc().\s\sNo\scode\schanges.
+D 2015-08-23T20:48:29.272
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in e2218eb228374422969de7b1680eda6864affcef
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -289,7 +289,7 @@ F src/ctime.c 5a0b735dc95604766f5dac73973658eef782ee8b
 F src/date.c 8ec787fed4929d8ccdf6b1bc360fccc3e1d2ca58
 F src/dbstat.c f402e77e25089c6003d0c60b3233b9b3947d599a
 F src/delete.c 8857a6f27560718f65d43bdbec86c967ae1f8dfa
-F src/expr.c 9b9fa7f825290dee945007edc9fe8fdd9b8ce49e
+F src/expr.c c34408e0ac1c57cf58ffa2003b339715ee9bda57
 F src/fault.c 160a0c015b6c2629d3899ed2daf63d75754a32bb
 F src/fkey.c c9b63a217d86582c22121699a47f22f524608869
 F src/func.c 824bea430d3a2b7dbc62806ad54da8fdb8ed9e3f
@@ -1378,7 +1378,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 48bd54594752d5be3337f12c72f28d2080cb630b
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P fc1b24f316af07a64672f6edc14ebcff487dffbb
-R f3f5a4cd7433351edd3f5e216e8c6ba5
+P cc5204149c4053b9e529a72102d8df0925ad1ea1
+R 45301f1702fbfadcb1473edb5c388742
 U drh
-Z 19ea95791c67f4fad1659a43be075b46
+Z a9752167ae3428587580d2325e13d760
index db5d937671ef93c279b2ca18d6e5bf91656925cd..78f168c7778c913b751bc51be3787b37c7b2ddbc 100644 (file)
@@ -1 +1 @@
-cc5204149c4053b9e529a72102d8df0925ad1ea1
\ No newline at end of file
+518d6220a12fb1289f699ef0821e6adfcd286ed0
\ No newline at end of file
index 1062733cb9d4672e9fdf1506454028404a4d2bb6..04cd36ea79037049838b3cd47484e8ead3d4b34c 100644 (file)
@@ -433,7 +433,7 @@ void sqlite3ExprSetHeightAndFlags(Parse *pParse, Expr *p){
 ** is responsible for making sure the node eventually gets freed.
 **
 ** If dequote is true, then the token (if it exists) is dequoted.
-** If dequote is false, no dequoting is performance.  The deQuote
+** If dequote is false, no dequoting is performed.  The deQuote
 ** parameter is ignored if pToken is NULL or if the token does not
 ** appear to be quoted.  If the quotes were of the form "..." (double-quotes)
 ** then the EP_DblQuoted flag is set on the expression node.