add missing ifdef

This commit is contained in:
Antony Dovgal 2006-10-04 13:02:36 +00:00
parent 38772455a4
commit 8d2406f448

View file

@ -1581,7 +1581,9 @@ void sqlite3VdbeDelete(Vdbe *p){
int sqlite3VdbeCursorMoveto(Cursor *p){
if( p->deferredMoveto ){
int res, rc;
#ifdef SQLITE_TEST
extern int sqlite3_search_count;
#endif
assert( p->isTable );
if( p->isTable ){
rc = sqlite3BtreeMoveto(p->pCursor, 0, p->movetoTarget, &res);