diff options
author | drh <drh@noemail.net> | 2020-02-17 19:25:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-02-17 19:25:07 +0000 |
commit | 78d1d225d87af40f5bdca57fa72f00b6ffaffa21 (patch) | |
tree | 4fbd90792dfbda68f8087b70821ba94540077b63 /src/expr.c | |
parent | bf48ce49f7c25e5d4524de9fdc5c0d505218d06d (diff) | |
download | sqlite-78d1d225d87af40f5bdca57fa72f00b6ffaffa21.tar.gz sqlite-78d1d225d87af40f5bdca57fa72f00b6ffaffa21.zip |
A better (smaller and faster) solution to ticket [4374860b29383380].
FossilOrigin-Name: abc473fb8fb999005dc79a360e34f97b3b25429decf1820dd2afa5c19577753d
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/src/expr.c b/src/expr.c index be23a5bd5..8b939de24 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2245,15 +2245,6 @@ int sqlite3ExprIsInteger(Expr *p, int *pValue){ } /* -** Return true if p is a Column node that references a virtual table. -*/ -int sqlite3ExprIsVtabRef(Expr *p){ - if( p->op!=TK_COLUMN ) return 0; - if( p->y.pTab==0 ) return 0; - return IsVirtual(p->y.pTab); -} - -/* ** Return FALSE if there is no chance that the expression can be NULL. ** ** If the expression might be NULL or if the expression is too complex @@ -5481,19 +5472,25 @@ static int impliesNotNullRow(Walker *pWalker, Expr *pExpr){ case TK_LT: case TK_LE: case TK_GT: - case TK_GE: + case TK_GE: { + Expr *pLeft = pExpr->pLeft; + Expr *pRight = pExpr->pRight; testcase( pExpr->op==TK_EQ ); testcase( pExpr->op==TK_NE ); testcase( pExpr->op==TK_LT ); testcase( pExpr->op==TK_LE ); testcase( pExpr->op==TK_GT ); testcase( pExpr->op==TK_GE ); - if( sqlite3ExprIsVtabRef(pExpr->pLeft) - || sqlite3ExprIsVtabRef(pExpr->pRight) + /* The y.pTab=0 assignment in wherecode.c always happens after the + ** impliesNotNullRow() test */ + if( (pLeft->op==TK_COLUMN && ALWAYS(pLeft->y.pTab!=0) + && IsVirtual(pLeft->y.pTab)) + || (pRight->op==TK_COLUMN && ALWAYS(pRight->y.pTab!=0) + && IsVirtual(pRight->y.pTab)) ){ - return WRC_Prune; + return WRC_Prune; } - + } default: return WRC_Continue; } |