]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Remove an obsolete comment from the pager. No code changes.
authordrh <drh@noemail.net>
Mon, 25 Apr 2016 19:28:34 +0000 (19:28 +0000)
committerdrh <drh@noemail.net>
Mon, 25 Apr 2016 19:28:34 +0000 (19:28 +0000)
FossilOrigin-Name: 36f97ca8874a03ac8699f44fe0da95b0be507cc7

manifest
manifest.uuid
src/pager.c

index acd08f3f4fae052adebe57897bbd0cb6f3fab534..ad1b6577cce6f0025f11991866eecb2d9bff6e38 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\ssome\sunreachable\sbranches\sin\sthe\spager.
-D 2016-04-25T19:20:56.371
+C Remove\san\sobsolete\scomment\sfrom\sthe\spager.\s\sNo\scode\schanges.
+D 2016-04-25T19:28:34.469
 F Makefile.in a905f3180accdafbd5a534bf26126ee5306d5056
 F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
 F Makefile.msc 71b8b16cf9393f68e2e2035486ca104872558836
@@ -364,7 +364,7 @@ F src/os_setup.h c9d4553b5aaa6f73391448b265b89bed0b890faa
 F src/os_unix.c 2488a2b6456709ad6398df2302d427a980e2695a
 F src/os_win.c 1997a873bfc8296a701bd8e2df8c3d5da5afe956
 F src/os_win.h eb7a47aa17b26b77eb97e4823f20a00b8bda12ca
-F src/pager.c a31af55dd6139c6ece7642667a035028a266d344
+F src/pager.c 456ea27c2a467c161b1466b8f4f5307f12314d31
 F src/pager.h 329bdf078a4e0a3b35084534d58625d21fd03681
 F src/parse.y 10eb2f3fb62341291528c7984498054731f9d31e
 F src/pcache.c b3230ecfc7f797063fbe167f2845da363e8f07f8
@@ -1486,7 +1486,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P a905d5e08de3f3c60b667d840b5995911372647d
-R 1f1507f9b43194c78dbe59034ff5cd5c
+P 3ae44770fdecc40c8097f1de0b504f36585a2232
+R db63125d858bb9f2f1e3791a791b0b06
 U drh
-Z 8869ed19649f951f40d0b8fe31c4bd6b
+Z 7c3cc56899db1d72bed3171f2d6f3ea7
index 010c2a556f6f5569d3abe147b656ba4fa0663182..5ba52e8d514e4922d74ae8a31aacc4ad8ca6c90b 100644 (file)
@@ -1 +1 @@
-3ae44770fdecc40c8097f1de0b504f36585a2232
\ No newline at end of file
+36f97ca8874a03ac8699f44fe0da95b0be507cc7
\ No newline at end of file
index 0a185c3e374153042544c236f290c9e67e0d2b46..6e464ba82fb86d1f67cffe9513e5a787e32d4fd4 100644 (file)
@@ -1820,10 +1820,7 @@ static void pager_unlock(Pager *pPager){
   ** trusted. Now that there are no outstanding references to the pager,
   ** it can safely move back to PAGER_OPEN state. This happens in both
   ** normal and exclusive-locking mode.
-  **
-  ** Exception: There is no way out of the error state for temp files.
-  ** This is because it is not possible to call pager_reset() on a temp
-  ** file pager (as this may discard the only copy of some data).  */
+  */
   assert( pPager->errCode==SQLITE_OK || !MEMDB );
   if( pPager->errCode ){
     if( pPager->tempFile==0 ){