mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Remove the SQLITE_CommitBusy flag. This was an attempt to block recursion
on the sqlite3_commit_hook() interface. But such recursion is explicitly disallowed, so the flag is pointless. (CVS 6889) FossilOrigin-Name: 1c2bfc43a4fd5b779a3b5b5b8ca5b41cb7250b5a
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
** file simultaneously, or one process from reading the database while
|
||||
** another is writing.
|
||||
**
|
||||
** @(#) $Id: pager.c,v 1.607 2009/07/13 11:22:10 danielk1977 Exp $
|
||||
** @(#) $Id: pager.c,v 1.608 2009/07/13 15:52:38 drh Exp $
|
||||
*/
|
||||
#ifndef SQLITE_OMIT_DISKIO
|
||||
#include "sqliteInt.h"
|
||||
@@ -1624,7 +1624,7 @@ static int pager_playback_one_page(
|
||||
** by a valid checksum.
|
||||
**
|
||||
** The pager never needs to know this in order to do its job. This
|
||||
** routine is only used from with assert() and testcase() macros.
|
||||
** routine is only used from within assert() and testcase() macros.
|
||||
*/
|
||||
static int pagerNextJournalPageIsValid(Pager *pPager){
|
||||
Pgno pgno; /* The page number of the page */
|
||||
|
Reference in New Issue
Block a user