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

Make the sqlite3BtreeMoveto function static, since it is only used from within btree.c. Remove unused function lockBtreeWithRetry from btree.c. (CVS 6850)

FossilOrigin-Name: 30d5ec62ab6a85ee60ee4128e20959842f8c7ad1
This commit is contained in:
danielk1977
2009-07-06 18:56:13 +00:00
parent 5f82e3cc3a
commit 3509a65827
5 changed files with 56 additions and 89 deletions

View File

@@ -13,7 +13,7 @@
** is not included in the SQLite library. It is used for automated
** testing of the SQLite library.
**
** $Id: test3.c,v 1.107 2009/07/03 17:23:49 drh Exp $
** $Id: test3.c,v 1.108 2009/07/06 18:56:13 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "btreeInt.h"
@@ -700,7 +700,9 @@ static int btree_move_to(
}
rc = sqlite3BtreeMovetoUnpacked(pCur, 0, iKey, 0, &res);
}else{
#if 0
rc = sqlite3BtreeMoveto(pCur, argv[2], strlen(argv[2]), 0, &res);
#endif
}
sqlite3BtreeLeave(pCur->pBtree);
if( rc ){