diff options
author | drh <drh@noemail.net> | 2010-04-06 18:51:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-04-06 18:51:42 +0000 |
commit | 75bb9f5a5b91fb8c2715dd15e242ea34bfe4df05 (patch) | |
tree | ff7e61ff5dfb33a32a54454444d12fbfcc9f111d /src | |
parent | 424aab88ca04ba20a9c760d299d8d221f56cd8fc (diff) | |
download | sqlite-75bb9f5a5b91fb8c2715dd15e242ea34bfe4df05.tar.gz sqlite-75bb9f5a5b91fb8c2715dd15e242ea34bfe4df05.zip |
Runs quicktest without hitting an assert now. Some tests get unexpected
results still and there is a memory leak.
FossilOrigin-Name: a8224448cc305258a59a9023e6604783dda73e45
Diffstat (limited to 'src')
-rw-r--r-- | src/where.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/where.c b/src/where.c index 49d536432..2d476cfbb 100644 --- a/src/where.c +++ b/src/where.c @@ -4078,11 +4078,8 @@ WhereInfo *sqlite3WhereBegin( pLevel->iTabCur = pTabItem->iCursor; iDb = sqlite3SchemaToIndex(db, pTab->pSchema); if( (pTab->tabFlags & TF_Ephemeral)!=0 || pTab->pSelect ){ - if( pLevel->plan.wsFlags & WHERE_TEMP_INDEX ){ - constructTransientIndex(pParse, pWC, pTabItem, notReady, pLevel); - } - continue; - } + /* Do nothing */ + }else #ifndef SQLITE_OMIT_VIRTUALTABLE if( (pLevel->plan.wsFlags & WHERE_VIRTUALTABLE)!=0 ){ const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); |