diff options
author | drh <drh@noemail.net> | 2006-06-14 19:00:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-06-14 19:00:20 +0000 |
commit | 4cbdda9e273d030228bc58128d59e84009baefeb (patch) | |
tree | 8da8bb9cb7812dbe99a7e58929aab1b73c630095 /src/where.c | |
parent | badf7a7a2fa7af2e78341999a3de812d04d1eaeb (diff) | |
download | sqlite-4cbdda9e273d030228bc58128d59e84009baefeb.tar.gz sqlite-4cbdda9e273d030228bc58128d59e84009baefeb.zip |
Added code to INSERT, DELETE and UPDATE virtual tables. The new code is
mostly untested. (CVS 3248)
FossilOrigin-Name: 32c97b884b104d120db3c0a87f5eab28f36851f8
Diffstat (limited to 'src/where.c')
-rw-r--r-- | src/where.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/where.c b/src/where.c index d137d740f..3928c488a 100644 --- a/src/where.c +++ b/src/where.c @@ -16,7 +16,7 @@ ** so is applicable. Because this module is responsible for selecting ** indices, you might also think of this module as the "query optimizer". ** -** $Id: where.c,v 1.216 2006/06/13 23:51:35 drh Exp $ +** $Id: where.c,v 1.217 2006/06/14 19:00:22 drh Exp $ */ #include "sqliteInt.h" @@ -1790,7 +1790,7 @@ WhereInfo *sqlite3WhereBegin( } assert( pTabItem->pTab ); #ifndef SQLITE_OMIT_VIRTUALTABLE - if( pTabItem->pTab->isVirtual ){ + if( IsVirtual(pTabItem->pTab) ){ cost = bestVirtualIndex(pParse, &wc, pTabItem, notReady, ppOrderBy ? *ppOrderBy : 0, i==0, &pLevel->pIdxInfo); |