Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c18989 #define EP_xIsSelect 0x001000 /* x.pSelect is valid (otherwise x.pList is) */ macro
19033 #define ExprUseXList(E) (((E)->flags&EP_xIsSelect)==0)
19034 #define ExprUseXSelect(E) (((E)->flags&EP_xIsSelect)!=0)
106911 assert( !ExprHasProperty(pExpr, EP_xIsSelect|EP_IntValue) );
107240 assert( !ExprHasProperty(pExpr, EP_xIsSelect|EP_IntValue) );
109448 ExprSetProperty(pExpr, EP_xIsSelect|EP_Subquery);
111291 assert( !ExprHasProperty(pIn, EP_xIsSelect) );
114386 if( combinedFlags & EP_xIsSelect ) return 2;
114467 if( seenNot && ExprHasProperty(p, EP_xIsSelect) ) return 0;
115187 assert( !ExprHasProperty(pExpr, EP_xIsSelect) );
[all …]