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

Proposed fix for ticket [bfbf38e5e9].

FossilOrigin-Name: 18ae030dad30303129186738c27cdc4ba06362b9
This commit is contained in:
drh
2012-11-02 18:48:49 +00:00
parent e8abb4cad3
commit 6e83a57f43
3 changed files with 13 additions and 8 deletions

View File

@@ -4030,8 +4030,10 @@ static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
ExprSetIrreducible(pExpr);
pExpr->iAgg = (i16)i;
pExpr->pAggInfo = pAggInfo;
return WRC_Prune;
}else{
return WRC_Continue;
}
return WRC_Prune;
}
}
return WRC_Continue;