mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-12 13:01:09 +03:00
Simplifications to the VdbeCursor object.
FossilOrigin-Name: 5562cd343d8f69242e06a51a7f1aef7ee7d78eec
This commit is contained in:
@@ -1193,7 +1193,7 @@ static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){
|
||||
/* Consider functions to be constant if all their arguments are constant
|
||||
** and pWalker->u.i==2 */
|
||||
case TK_FUNCTION:
|
||||
if( pWalker->u.i==2 ) return 0;
|
||||
if( pWalker->u.i==2 ) return WRC_Continue;
|
||||
/* Fall through */
|
||||
case TK_ID:
|
||||
case TK_COLUMN:
|
||||
|
||||
Reference in New Issue
Block a user