From 73ac46da31d1579105686096251de75b87dc69df Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 19 Sep 2011 11:57:34 +0000 Subject: Remove a stray merge-sort related change from pager.c and pager.h. FossilOrigin-Name: 69823ed163049d6fa1e24a9810c3c99f2a8fdd46 --- src/pager.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/pager.c') diff --git a/src/pager.c b/src/pager.c index f40d2af74..f8d3ba998 100644 --- a/src/pager.c +++ b/src/pager.c @@ -620,7 +620,6 @@ struct Pager { u8 tempFile; /* zFilename is a temporary file */ u8 readOnly; /* True for a read-only database */ u8 memDb; /* True to inhibit all file I/O */ - u8 hasSeenStress; /* pagerStress() called one or more times */ /************************************************************************** ** The following block contains those class members that change during @@ -4175,7 +4174,6 @@ static int pagerStress(void *p, PgHdr *pPg){ ** be called in the error state. Nevertheless, we include a NEVER() ** test for the error state as a safeguard against future changes. */ - pPager->hasSeenStress = 1; if( NEVER(pPager->errCode) ) return SQLITE_OK; if( pPager->doNotSpill ) return SQLITE_OK; if( pPager->doNotSyncSpill && (pPg->flags & PGHDR_NEED_SYNC)!=0 ){ -- cgit v1.2.3