1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Additional I/O Tracing support. (CVS 3667)

FossilOrigin-Name: ed915f579a8e5b75681a9a6012b5041500cad36c
This commit is contained in:
drh
2007-03-01 00:29:13 +00:00
parent f075cd087b
commit 602c237461
6 changed files with 48 additions and 13 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.283 2007/02/28 04:47:27 drh Exp $
** @(#) $Id: pager.c,v 1.284 2007/03/01 00:29:14 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -2507,6 +2507,7 @@ static int pager_recycle(Pager *pPager, int syncOk, PgHdr **ppPg){
** be marked as alwaysRollback from here on out.
*/
if( pPg->alwaysRollback ){
IOTRACE(("ALWAYS_ROLLBACK %p\n", pPager))
pPager->alwaysRollback = 1;
}