mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
The first test file for BTree added. Simple insert and delete tests pass.
There is still a lot of work to be done, though. (CVS 228) FossilOrigin-Name: 85f015c9750a5eab274e82f0e2c6e8f09dc7ca70
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
** all writes in order to support rollback. Locking is used to limit
|
||||
** access to one or more reader or one writer.
|
||||
**
|
||||
** @(#) $Id: pager.c,v 1.10 2001/06/23 11:36:20 drh Exp $
|
||||
** @(#) $Id: pager.c,v 1.11 2001/06/24 20:39:41 drh Exp $
|
||||
*/
|
||||
#include "sqliteInt.h"
|
||||
#include "pager.h"
|
||||
@@ -476,6 +476,7 @@ int sqlitepager_open(
|
||||
pPager->errMask = 0;
|
||||
pPager->pFirst = 0;
|
||||
pPager->pLast = 0;
|
||||
pPager->nExtra = nExtra;
|
||||
memset(pPager->aHash, 0, sizeof(pPager->aHash));
|
||||
*ppPager = pPager;
|
||||
return SQLITE_OK;
|
||||
|
Reference in New Issue
Block a user