]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment in pager.c. No actual code changes. (CVS 6145)
authordanielk1977 <danielk1977@noemail.net>
Thu, 8 Jan 2009 18:04:13 +0000 (18:04 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Thu, 8 Jan 2009 18:04:13 +0000 (18:04 +0000)
FossilOrigin-Name: 44d3bfddf44b10b3744db6b41bc3f53c3903df5e

manifest
manifest.uuid
src/pager.c

index ee2f782b09574f3627e8b32c6397357ce005144e..3d6aa3e9a0c25a0199905d8c63874f20696024b5 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Avoid\san\s'invalid\scast'\swarning\sin\stest_osinst.c.\s(CVS\s6144)
-D 2009-01-08T17:57:32
+C Fix\sa\scomment\sin\spager.c.\sNo\sactual\scode\schanges.\s(CVS\s6145)
+D 2009-01-08T18:04:14
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 05461a9b5803d5ad10c79f989801e9fd2cc3e592
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -142,7 +142,7 @@ F src/os_common.h 24525d8b7bce66c374dfc1810a6c9043f3359b60
 F src/os_os2.c bed77dc26e3a95ce4a204936b9a1ca6fe612fcc5
 F src/os_unix.c a1f05f59c24e61186c981f2a7fea13986db620f1
 F src/os_win.c 496e3ceb499aedc63622a89ef76f7af2dd902709
-F src/pager.c 35445d2172eb39c47ec146777c26e47e6d865538
+F src/pager.c 1c02b40777a8094ea73cb8098d5d7f2c0920bd6d
 F src/pager.h 9870acb2d653848d90d765d7cbf163496d6c8111
 F src/parse.y 4d0e33a702dc3ea7b69d8ae1914b3fbd32e46057
 F src/pcache.c 16dc8da6e6ba6250f8dfd9ee46036db1cbceedc6
@@ -696,7 +696,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 5a39525ba3e65f1c6df3cf23fbfb57f6a0bf4b62
-R c3c4fd1b846df0556323aab7cdc9eb42
+P 931f3a21bd4b6c5760ed64c23e8210cf2c3e3ab5
+R c8725ae312af088a259f78aa014f9f98
 U danielk1977
-Z 0168d6c7e86fe88f62ba3e0eaa381f28
+Z 1626db2f414f98e49e072e67ca692185
index 26f2286862b963f11ae16a8e6a79fcf27ac97d8d..5840eac2fc76611a4bba26cb660e6f34aa490355 100644 (file)
@@ -1 +1 @@
-931f3a21bd4b6c5760ed64c23e8210cf2c3e3ab5
\ No newline at end of file
+44d3bfddf44b10b3744db6b41bc3f53c3903df5e
\ No newline at end of file
index 6a65c09e8cafd615e53da989f8ed3a5646baf7ed..055bdb43c7f4de716d9c52b663d3311429b67b3f 100644 (file)
@@ -18,7 +18,7 @@
 ** file simultaneously, or one process from reading the database while
 ** another is writing.
 **
-** @(#) $Id: pager.c,v 1.542 2009/01/08 17:50:46 danielk1977 Exp $
+** @(#) $Id: pager.c,v 1.543 2009/01/08 18:04:14 danielk1977 Exp $
 */
 #ifndef SQLITE_OMIT_DISKIO
 #include "sqliteInt.h"
@@ -2912,6 +2912,7 @@ static int pagerSharedLock(Pager *pPager){
       /* Playback and delete the journal.  Drop the database write
       ** lock and reacquire the read lock. Purge the cache before
       ** playing back the hot-journal so that we don't end up with
+      ** an inconsistent cache.
       */
       sqlite3PcacheClear(pPager->pPCache);
       rc = pager_playback(pPager, 1);