]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a typo in a comment for PRAGMA journal_mode. Also amplify that same
authordrh <drh@noemail.net>
Mon, 10 Oct 2011 12:04:14 +0000 (12:04 +0000)
committerdrh <drh@noemail.net>
Mon, 10 Oct 2011 12:04:14 +0000 (12:04 +0000)
comment.

FossilOrigin-Name: c8ff2a484005ca48c52407db9f4a9a7d9f747158

manifest
manifest.uuid
src/pragma.c

index 7bcbf5db6e8894f8747fd3602a5a344b400af95b..076dfc3c3d0634ac69e7e103d7dd12128b6a4f72 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C All\sthe\ssoft_heap_limit\sto\sbe\sexceeded\sby\s10%\sin\stest\scases.
-D 2011-10-08T21:39:11.646
+C Fix\sa\stypo\sin\sa\scomment\sfor\sPRAGMA\sjournal_mode.\s\sAlso\samplify\sthat\ssame\ncomment.
+D 2011-10-10T12:04:14.421
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in a162fe39e249b8ed4a65ee947c30152786cfe897
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -173,7 +173,7 @@ F src/parse.y 12b7ebd61ea54f0e1b1083ff69cc2c8ce9353d58
 F src/pcache.c 49e718c095810c6b3334e3a6d89970aceaddefce
 F src/pcache.h c683390d50f856d4cd8e24342ae62027d1bb6050
 F src/pcache1.c 24f5e85a78514584b46190260ba7ab0a66312197
-F src/pragma.c ebcd20f1e654f5cb3aeef864ed69c4697719fbaa
+F src/pragma.c 68d7db4fc9de8bcfae94c1d43120531ec252b9c0
 F src/prepare.c e64261559a3187698a3e7e6c8b001a4f4f98dab4
 F src/printf.c 585a36b6a963df832cfb69505afa3a34ed5ef8a1
 F src/random.c cd4a67b3953b88019f8cd4ccd81394a8ddfaba50
@@ -966,7 +966,7 @@ F tool/symbols.sh caaf6ccc7300fd43353318b44524853e222557d5
 F tool/tostr.awk e75472c2f98dd76e06b8c9c1367f4ab07e122d06
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
 F tool/warnings.sh fbc018d67fd7395f440c28f33ef0f94420226381
-P 2ab14a846727857175eac7961b7338c4d3b417ca
-R cc54f7e76cf6a10d871ea3d2d9a8feff
+P 4be9dccc711c9ad252e2cbd99bbcbe43247503a1
+R 4f7aae45b96181a005dc5c4d09ba91e5
 U drh
-Z e455d0c3668c3a5b3047df9ebe89d72b
+Z b16e865902308c681d3a83f00f2990fa
index 4cf4ba7daeab56289371f102c753d68a9f696ff7..600f6aeee15e47ac53c9d7c43dc8d7e030253eed 100644 (file)
@@ -1 +1 @@
-4be9dccc711c9ad252e2cbd99bbcbe43247503a1
\ No newline at end of file
+c8ff2a484005ca48c52407db9f4a9a7d9f747158
\ No newline at end of file
index cd2aab223c264bd85967bed4fae368d1ae32d593..11345078adebe8a8d220aa392fc2138eb19b2cc4 100644 (file)
@@ -533,8 +533,10 @@ void sqlite3Pragma(
     int eMode;        /* One of the PAGER_JOURNALMODE_XXX symbols */
     int ii;           /* Loop counter */
 
-    /* Force the schema to be loaded on all databases.  This cases all
-    ** database files to be opened and the journal_modes set. */
+    /* Force the schema to be loaded on all databases.  This causes all
+    ** database files to be opened and the journal_modes set.  This is
+    ** necessary because subsequent processing must know if the databases
+    ** are in WAL mode. */
     if( sqlite3ReadSchema(pParse) ){
       goto pragma_out;
     }