mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Remove an ALWAYS() added in [c50e6c2ace49d092] because it is sometimes false.
dbsqlfuzz c393a4f783d42efd9552772110aff7e5d937f15e. FossilOrigin-Name: b9daf37e57cde12c4de271a2b1995e8e91b6411f8c2e8882e536241929609b3a
This commit is contained in:
@@ -6476,7 +6476,7 @@ static int exprRefToSrcList(Walker *pWalker, Expr *pExpr){
|
||||
int i;
|
||||
struct RefSrcList *p = pWalker->u.pRefSrcList;
|
||||
SrcList *pSrc = p->pRef;
|
||||
int nSrc = ALWAYS(pSrc) ? pSrc->nSrc : 0;
|
||||
int nSrc = pSrc ? pSrc->nSrc : 0;
|
||||
for(i=0; i<nSrc; i++){
|
||||
if( pExpr->iTable==pSrc->a[i].iCursor ){
|
||||
pWalker->eCode |= 1;
|
||||
|
Reference in New Issue
Block a user