Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dfkey.c597 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq); in fkScanChildren()
631 pAll = sqlite3ExprAnd(pParse, pAll, pEq); in fkScanChildren()
635 pWhere = sqlite3ExprAnd(pParse, pWhere, pNe); in fkScanChildren()
1266 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq); in fkActionTrigger()
1282 pWhen = sqlite3ExprAnd(pParse, pWhen, pEq); in fkActionTrigger()
H A Dwherecode.c1108 pExpr = sqlite3ExprAnd(pParse, pExpr, sqlite3ExprDup(db, pTerm->pExpr, 0)); in codeCursorHint()
2241 pAndExpr = sqlite3ExprAnd(pParse, pAndExpr, pExpr); in sqlite3WhereCodeOneLoopStart()
2724 pSubWhere = sqlite3ExprAnd(pParse, pSubWhere, in sqlite3WhereRightJoinLoop()
H A Dselect.c610 p->pWhere = sqlite3ExprAnd(pParse, p->pWhere, pEq); in sqlite3ProcessJoin()
619 p->pWhere = sqlite3ExprAnd(pParse, p->pWhere, pRight->u3.pOn); in sqlite3ProcessJoin()
5127 pSubq->pHaving = sqlite3ExprAnd(pParse, pSubq->pHaving, pNew); in pushDownWhereTerms()
5129 pSubq->pWhere = sqlite3ExprAnd(pParse, pSubq->pWhere, pNew); in pushDownWhereTerms()
6434 pNew = sqlite3ExprAnd(pWalker->pParse, pWhere, pNew); in havingToWhereExprCb()
H A DsqliteInt.h4584 Expr *sqlite3ExprAnd(Parse*,Expr*, Expr*);
H A Dparse.y1176 expr(A) ::= expr(A) AND expr(Y). {A=sqlite3ExprAnd(pParse,A,Y);}
H A Dexpr.c1046 Expr *sqlite3ExprAnd(Parse *pParse, Expr *pLeft, Expr *pRight){ in sqlite3ExprAnd() function
H A Dwhere.c872 pPartial = sqlite3ExprAnd(pParse, pPartial, in constructAutomaticIndex()
/sqlite-3.40.0/test/
H A Dselect4.test1031 # deleted by the truth optimization in sqlite3ExprAnd() which was invoked by