diff options
author | drh <drh@noemail.net> | 2020-01-12 22:20:07 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-01-12 22:20:07 +0000 |
commit | ca7d3e1d4290fda5887b91c2afbc5d85c39c7d1f (patch) | |
tree | 72c96a880d3a9f6a82a4932095bd24fa379f84cf /src | |
parent | ffe4d4a2d50a8509c6e0d5fd4082d880efb406b2 (diff) | |
download | sqlite-ca7d3e1d4290fda5887b91c2afbc5d85c39c7d1f.tar.gz sqlite-ca7d3e1d4290fda5887b91c2afbc5d85c39c7d1f.zip |
Remove an incorrect assert(). Fix for ticket [614b25314c766238]
FossilOrigin-Name: 6a999c5aa0d1d5569a5bda50d27e3a15c13e93e69d00db97c5294901522064a3
Diffstat (limited to 'src')
-rw-r--r-- | src/wherecode.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wherecode.c b/src/wherecode.c index 03e393498..251695faf 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -2150,9 +2150,6 @@ Bitmask sqlite3WhereCodeOneLoopStart( WhereInfo *pSubWInfo; /* Info for single OR-term scan */ Expr *pOrExpr = pOrTerm->pExpr; /* Current OR clause term */ int jmp1 = 0; /* Address of jump operation */ - assert( (pTabItem[0].fg.jointype & JT_LEFT)==0 - || ExprHasProperty(pOrExpr, EP_FromJoin) - ); if( pAndExpr ){ pAndExpr->pLeft = pOrExpr; pOrExpr = pAndExpr; |