1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Rename the internal "EP_Constant" bitmask to a less misleading "EP_ConstFunc".

FossilOrigin-Name: 4ef7ceced2b0000d21f7f8014384c04a0e4661d3
This commit is contained in:
drh
2015-02-09 14:07:07 +00:00
parent 17645f5eec
commit 63f845734e
5 changed files with 12 additions and 12 deletions

View File

@@ -740,7 +740,7 @@ static int resolveExprStep(Walker *pWalker, Expr *pExpr){
}
#endif
if( pDef->funcFlags & SQLITE_FUNC_CONSTANT ){
ExprSetProperty(pExpr,EP_Constant);
ExprSetProperty(pExpr,EP_ConstFunc);
}
}
if( is_agg && (pNC->ncFlags & NC_AllowAgg)==0 ){