From 8d2406f44893ac578dda4484331bb03e77d3aa42 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 4 Oct 2006 13:02:36 +0000 Subject: [PATCH] add missing ifdef --- ext/pdo_sqlite/sqlite/src/vdbeaux.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/pdo_sqlite/sqlite/src/vdbeaux.c b/ext/pdo_sqlite/sqlite/src/vdbeaux.c index 35bf07f422..c71c8f4ea6 100644 --- a/ext/pdo_sqlite/sqlite/src/vdbeaux.c +++ b/ext/pdo_sqlite/sqlite/src/vdbeaux.c @@ -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); -- 2.50.1