Home
last modified time | relevance | path

Searched refs:TF_Ephemeral (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/src/
H A Dvtab.c1273 pTab->tabFlags |= TF_Ephemeral; in sqlite3VtabEponymousTableClear()
H A Dselect.c5517 pTab->tabFlags |= TF_Ephemeral | TF_NoVisibleRowid; in resolveFromTermToCte()
5666 pTab->tabFlags |= TF_Ephemeral | TF_NoVisibleRowid; in sqlite3ExpandSubquery()
5668 pTab->tabFlags |= TF_Ephemeral; /* Legacy compatibility mode */ in sqlite3ExpandSubquery()
6146 if( (pTab->tabFlags & TF_Ephemeral)!=0 ){ in selectAddSubqueryTypeInfo()
H A Dwhere.c3468 if( !IsView(pTab) && (pTab->tabFlags & TF_Ephemeral)==0 ){ in whereLoopAddBtree()
3540 if( IsView(pTab) || (pTab->tabFlags & TF_Ephemeral)!=0 ){ in whereLoopAddBtree()
5998 if( (pTab->tabFlags & TF_Ephemeral)!=0 || IsView(pTab) ){ in sqlite3WhereBegin()
H A Dwindow.c1093 pTab->tabFlags |= TF_Ephemeral; in sqlite3WindowRewrite()
H A DsqliteInt.h2344 #define TF_Ephemeral 0x00004000 /* An ephemeral table */ macro
H A Dbuild.c826 if( !db->mallocFailed && (pTable->tabFlags & TF_Ephemeral)==0 ){ in deleteTable()