Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dexpr.c2272 int sqlite3ExprIsConstant(Expr *p){ in sqlite3ExprIsConstant() function
2650 res = sqlite3ExprIsConstant(pIn); in sqlite3InRhsIsConstant()
3203 if( addrOnce && !sqlite3ExprIsConstant(pE2) ){ in sqlite3CodeRhsOfIN()
4496 if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ in sqlite3ExprCodeTarget()
H A Dwhere.c1234 if( sqlite3ExprIsConstant(pExpr) ){ in allocateIndexInfo()
1346 if( sqlite3ExprIsConstant(pExpr) ) continue; in allocateIndexInfo()
4661 if( mTerm==0 && !sqlite3ExprIsConstant(p) ) continue; in wherePathSatisfiesOrderBy()
5514 if( sqlite3ExprIsConstant(pExpr) ) continue; in whereAddIndexedExpr()
H A Dselect.c4699 assert( sqlite3ExprIsConstant(pValue) ); in constInsert()
4757 if( pRight->op==TK_COLUMN && sqlite3ExprIsConstant(pLeft) ){ in findConstInWhere()
4760 if( pLeft->op==TK_COLUMN && sqlite3ExprIsConstant(pRight) ){ in findConstInWhere()
H A Dwindow.c1165 if( 0==sqlite3ExprIsConstant(pExpr) ){ in sqlite3WindowOffsetExpr()
H A DsqliteInt.h4810 int sqlite3ExprIsConstant(Expr*);
H A Dparse.y1300 if( Y->nExpr==1 && sqlite3ExprIsConstant(pRHS) && A->op!=TK_VECTOR ){