Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dparse.y1199 if( A ) A->flags |= EP_InfixFunc;
1210 if( A ) A->flags |= EP_InfixFunc;
H A DsqliteInt.h2903 #define EP_InfixFunc 0x000100 /* True for an infix function: LIKE, GLOB, etc */ macro
H A Dexpr.c4549 if( nFarg>=2 && ExprHasProperty(pExpr, EP_InfixFunc) ){ in sqlite3ExprCodeTarget()