1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Got a lot of BTree tests working. Still lots more needed. (CVS 230)

FossilOrigin-Name: 9cfeeb5896d2a17c8c7904136d346a6245c9e497
This commit is contained in:
drh
2001-06-28 01:54:48 +00:00
parent 2aa679f604
commit dd79342e87
9 changed files with 405 additions and 46 deletions

View File

@@ -24,7 +24,7 @@
** This header file defines the interface that the sqlite B-Tree file
** subsystem.
**
** @(#) $Id: btree.h,v 1.6 2001/06/25 02:11:07 drh Exp $
** @(#) $Id: btree.h,v 1.7 2001/06/28 01:54:49 drh Exp $
*/
typedef struct Btree Btree;
@@ -60,4 +60,5 @@ int sqliteBtreeUpdateMeta(Btree*, int*);
#ifdef SQLITE_TEST
int sqliteBtreePageDump(Btree*, int);
int sqliteBtreeCursorDump(BtCursor*, int*);
Pager *sqliteBtreePager(Btree*);
#endif