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

Turn on the atomic multifile commit logic. It does not work right yet, but

it has at least stopped failing asserts. (CVS 1550)

FossilOrigin-Name: 3674b25edc37145b2b1275dd20580015ace66aa7
This commit is contained in:
drh
2004-06-09 20:03:08 +00:00
parent ae2b40c47d
commit c9e0686ead
9 changed files with 45 additions and 36 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.162 2004/06/09 17:37:23 drh Exp $
** $Id: btree.c,v 1.163 2004/06/09 20:03:09 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** For a detailed discussion of BTrees, refer to
@@ -1250,7 +1250,7 @@ int sqlite3BtreeBeginTrans(Btree *pBt, int wrflag, int nMaster){
}
if( rc==SQLITE_OK && wrflag ){
rc = sqlite3pager_begin(pBt->pPage1->aData, 0);
rc = sqlite3pager_begin(pBt->pPage1->aData, nMaster);
if( rc==SQLITE_OK ){
rc = newDatabase(pBt);
}