Searched refs:sqliteExprCheck (Results 1 – 7 of 7) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | update.c | 120 if( sqliteExprCheck(pParse, pChanges->a[i].pExpr, 0, 0) ){ in sqliteUpdate() 199 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){ in sqliteUpdate()
|
H A D | expr.c | 716 if( sqliteExprCheck(pParse, pE2, 0, 0) ){ in sqliteExprResolveIds() 824 int sqliteExprCheck(Parse *pParse, Expr *pExpr, int allowAgg, int *pIsAgg){ in sqliteExprCheck() function 869 nErr = sqliteExprCheck(pParse, pExpr->pList->a[i].pExpr, in sqliteExprCheck() 898 nErr = sqliteExprCheck(pParse, pExpr->pLeft, allowAgg, pIsAgg); in sqliteExprCheck() 901 nErr = sqliteExprCheck(pParse, pExpr->pRight, allowAgg, pIsAgg); in sqliteExprCheck() 908 nErr = sqliteExprCheck(pParse, pE2, allowAgg, pIsAgg); in sqliteExprCheck()
|
H A D | delete.c | 128 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){ in sqliteDeleteFrom()
|
H A D | select.c | 2100 if( sqliteExprCheck(pParse, pEList->a[i].pExpr, 1, &isAgg) ){ in sqliteSelect() 2108 if( sqliteExprCheck(pParse, pWhere, 0, 0) ){ in sqliteSelect() 2120 if( sqliteExprCheck(pParse, pHaving, 1, &isAgg) ){ in sqliteSelect() 2135 if( sqliteExprCheck(pParse, pE, isAgg, 0) ){ in sqliteSelect() 2163 if( sqliteExprCheck(pParse, pE, isAgg, 0) ){ in sqliteSelect()
|
H A D | sqliteInt.h | 1194 int sqliteExprCheck(Parse*, Expr*, int, int*);
|
H A D | insert.c | 250 if( sqliteExprCheck(pParse, pList->a[i].pExpr, 0, 0) ){ in sqliteInsert()
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | select1.test | 118 # Error messges from sqliteExprCheck
|