]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix typo in comment of prepare.c.
authorshaneh <shaneh@noemail.net>
Thu, 17 Dec 2009 21:05:42 +0000 (21:05 +0000)
committershaneh <shaneh@noemail.net>
Thu, 17 Dec 2009 21:05:42 +0000 (21:05 +0000)
FossilOrigin-Name: 333c3ffe6d4d2293d01958812b9c02b0bf9796a4

manifest
manifest.uuid
src/prepare.c

index 9f3072a3c96c61e19ccaaaf6402d073e8372523d..7b5ef4b14938aeef891c2b24a5f98968ac8bd7fe 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,5 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-C Disable\strace\swhen\srecursively\srunning\scommands\swhile\svacuuming.
-D 2009-12-17T03:49:56
+C Fix\stypo\sin\scomment\sof\sprepare.c.
+D 2009-12-17T21:05:43
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in c5827ead754ab32b9585487177c93bb00b9497b3
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -160,7 +157,7 @@ F src/pcache.c 3b079306376e0e04c0d3df40c0a4b750a1839310
 F src/pcache.h c683390d50f856d4cd8e24342ae62027d1bb6050
 F src/pcache1.c 2bb2261190b42a348038f5b1c285c8cef415fcc8
 F src/pragma.c 6936d7df5e04b9f996f8f320d15e65b6944b2caa
-F src/prepare.c ad90970bba3aead154266d8bb6faf9fbb5233b94
+F src/prepare.c 170bd953058efe1c46b8ad9020d49cd6f40f0b45
 F src/printf.c 644bc7d59df3dc56d6d8b9a510914bfc6b51bc69
 F src/random.c cd4a67b3953b88019f8cd4ccd81394a8ddfaba50
 F src/resolve.c d052e5c44bab34f83b3c1741aaa07478d18b5dd5
@@ -783,14 +780,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P c34cf23efb92d9bbb7cf4245d372e47182771f63
-R df34564a99f98bdf716b0893f7083986
-U drh
-Z 66c05a13b04dc772b90bafeb209da98e
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.6 (GNU/Linux)
-
-iD8DBQFLKapooxKgR168RlERAj7yAJwLPR/kXcmD/ivKBpTOSoWkc7OyRQCdElW2
-J6PsgGZAGYZHuEQMqY8qq8I=
-=aPY2
------END PGP SIGNATURE-----
+P 69a1348a3c88ffbf401cf72bbec8b4a76557bd11
+R a3cd17ae6a702b03711fe1c27cf099f5
+U shaneh
+Z f0b61bdb971825439decf06867c1b245
index 599426a272f8ef7041f4b5ab37ddb4fc0fb1f6d2..fd702eb7815977df55af5e984e22b20edad54af3 100644 (file)
@@ -1 +1 @@
-69a1348a3c88ffbf401cf72bbec8b4a76557bd11
\ No newline at end of file
+333c3ffe6d4d2293d01958812b9c02b0bf9796a4
\ No newline at end of file
index 0789ca507ba53a28171cb645f6e8d6cc7942ccd2..29f83e580880909accbf2fd8d811cb8ce9757861 100644 (file)
@@ -469,7 +469,7 @@ static void schemaIsValid(Parse *pParse){
     }
 
     /* Read the schema cookie from the database. If it does not match the 
-    ** value stored as part of the in the in-memory schema representation,
+    ** value stored as part of the in-memory schema representation,
     ** set Parse.rc to SQLITE_SCHEMA. */
     sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie);
     if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){