diff options
author | drh <drh@noemail.net> | 2007-08-27 21:49:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-27 21:49:34 +0000 |
commit | 97c8ec325de75d363cc989b4ad1433d33c11f7a8 (patch) | |
tree | 7d86cb9203a494b4827eece433aea36971ab9a22 /src/btreeInt.h | |
parent | 50d3f9064bc7bfd95d6a19b1a9797ee9d12f7769 (diff) | |
download | sqlite-97c8ec325de75d363cc989b4ad1433d33c11f7a8.tar.gz sqlite-97c8ec325de75d363cc989b4ad1433d33c11f7a8.zip |
Bring the amalgamation builder up to date with the latest changes.
Remove some vestigial code. (CVS 4303)
FossilOrigin-Name: 0ae30e5c76d9094307ea086a9993a953631ab9da
Diffstat (limited to 'src/btreeInt.h')
-rw-r--r-- | src/btreeInt.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/btreeInt.h b/src/btreeInt.h index d67a7cf08..a491c8a2f 100644 --- a/src/btreeInt.h +++ b/src/btreeInt.h @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: btreeInt.h,v 1.9 2007/08/22 00:39:20 drh Exp $ +** $Id: btreeInt.h,v 1.10 2007/08/27 21:49:34 drh Exp $ ** ** This file implements a external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to @@ -623,7 +623,9 @@ int sqlite3BtreeGetPage(BtShared*, Pgno, MemPage**, int); int sqlite3BtreeInitPage(MemPage *pPage, MemPage *pParent); void sqlite3BtreeParseCellPtr(MemPage*, u8*, CellInfo*); void sqlite3BtreeParseCell(MemPage*, int, CellInfo*); +#ifdef SQLITE_TEST u8 *sqlite3BtreeFindCell(MemPage *pPage, int iCell); +#endif int sqlite3BtreeRestoreOrClearCursorPosition(BtCursor *pCur); void sqlite3BtreeGetTempCursor(BtCursor *pCur, BtCursor *pTempCur); void sqlite3BtreeReleaseTempCursor(BtCursor *pCur); |