Home
last modified time | relevance | path

Searched refs:EP_Subquery (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/src/
H A DsqliteInt.h2917 #define EP_Subquery 0x400000 /* Tree contains a TK_SELECT operator */ macro
2931 #define EP_Propagate (EP_Collate|EP_Subquery|EP_HasFunc)
H A Dexpr.c972 ExprSetProperty(pExpr, EP_xIsSelect|EP_Subquery); in sqlite3PExprAddSelect()
1508 || ExprHasProperty(p->pLeft, EP_Subquery) ); in exprDup()
4990 if( ALWAYS(pExpr) && ExprHasProperty(pExpr,EP_Subquery) ){ in sqlite3ExprCode()
H A Dwherecode.c2239 if( ExprHasProperty(pExpr, EP_Subquery) ) continue; /* tag-20220303a */ in sqlite3WhereCodeOneLoopStart()
H A Dinsert.c1208 ExprHasProperty(pX, EP_Subquery) ? OP_Copy : OP_SCopy, y, iRegStore); in sqlite3Insert()
H A Dselect.c3816 testcase( ExprHasProperty(pCopy, EP_Subquery) ); in substExpr()
6066 if( (elistFlags & (EP_HasFunc|EP_Subquery))!=0 ){ in selectExpander()