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

Remove an assert() in btree.c which is no longer true due to changes in

the error reporting behavior of ptrmapPut(). (CVS 6914)

FossilOrigin-Name: 110998f18a7ad1ddaffab048cabef675d882cbb8
This commit is contained in:
drh
2009-07-21 15:33:14 +00:00
parent c314dc7996
commit fd5f02f0c6
3 changed files with 8 additions and 9 deletions

View File

@@ -9,7 +9,7 @@
** May you share freely, never taking more than you give.
**
*************************************************************************
** $Id: btree.c,v 1.694 2009/07/21 11:52:35 drh Exp $
** $Id: btree.c,v 1.695 2009/07/21 15:33:14 drh Exp $
**
** This file implements a external (disk-based) database using BTrees.
** See the header comment on "btreeInt.h" for additional information.
@@ -6160,7 +6160,6 @@ static int balance_nonroot(
pNew = apNew[++k];
if( !leafData ) continue;
}
assert( rc==SQLITE_OK );
assert( j<nOld );
assert( k<nNew );