diff options
Diffstat (limited to 'src/btree.c')
-rw-r--r-- | src/btree.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/btree.c b/src/btree.c index fa4fe86a1..ed4c5d157 100644 --- a/src/btree.c +++ b/src/btree.c @@ -9,7 +9,7 @@ ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: btree.c,v 1.160 2004/06/07 01:52:14 drh Exp $ +** $Id: btree.c,v 1.161 2004/06/07 16:27:46 drh Exp $ ** ** This file implements a external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to @@ -3713,12 +3713,6 @@ int sqlite3BtreeFlags(BtCursor *pCur){ return pPage ? pPage->aData[pPage->hdrOffset] : 0; } -/****************************************************************************** -** The complete implementation of the BTree subsystem is above this line. -** All the code the follows is for testing and troubleshooting the BTree -** subsystem. None of the code that follows is used during normal operation. -******************************************************************************/ - /* ** Print a disassembly of the given page on standard output. This routine ** is used for debugging and testing only. |