diff options
author | Antony Dovgal <tony2001@php.net> | 2006-10-04 13:02:36 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-10-04 13:02:36 +0000 |
commit | 8d2406f44893ac578dda4484331bb03e77d3aa42 (patch) | |
tree | 6525ec0db0c178c255e06b3afbca201aeb0d8118 | |
parent | 38772455a498546964289da7f498d34ba0a887c0 (diff) | |
download | php-git-8d2406f44893ac578dda4484331bb03e77d3aa42.tar.gz |
add missing ifdef
-rw-r--r-- | ext/pdo_sqlite/sqlite/src/vdbeaux.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); |