Searched refs:sqliteExprCheck (Results 1 – 7 of 7) sorted by relevance
/titanic_44/usr/src/lib/libsqlite/src/ |
H A D | update.c | 123 if( sqliteExprCheck(pParse, pChanges->a[i].pExpr, 0, 0) ){ in sqliteUpdate() 202 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){ in sqliteUpdate()
|
H A D | expr.c | 718 if( sqliteExprCheck(pParse, pE2, 0, 0) ){ in sqliteExprResolveIds() 826 int sqliteExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){ in sqliteExprCheck() function 871 nErr = sqliteExprCheck(pParse, pExpr->pList->a[i].pExpr, in sqliteExprCheck() 899 nErr = sqliteExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg); in sqliteExprCheck() 902 nErr = sqliteExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg); in sqliteExprCheck() 909 nErr = sqliteExprCheck(pParse, pE2, allowAgg, pIsAgg); in sqliteExprCheck()
|
H A D | delete.c | 131 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){ in sqliteDeleteFrom()
|
H A D | select.c | 2104 if( sqliteExprCheck(pParse, pEList->a[i].pExpr, 1, &isAgg) ){ in sqliteSelect() 2112 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){ in sqliteSelect() 2124 if( sqliteExprCheck(pParse, pHaving, 1, &isAgg) ){ in sqliteSelect() 2139 if( sqliteExprCheck(pParse, pE, isAgg, 0) ){ in sqliteSelect() 2167 if( sqliteExprCheck(pParse, pE, isAgg, 0) ){ in sqliteSelect()
|
H A D | sqliteInt.h | 1197 int sqliteExprCheck(Parse*, Expr*, int, int*);
|
H A D | insert.c | 253 if( sqliteExprCheck(pParse, pList->a[i].pExpr, 0, 0) ){ in sqliteInsert()
|
/titanic_44/usr/src/lib/libsqlite/test/ |
H A D | select1.test | 120 # Error messges from sqliteExprCheck
|