diff options
author | drh <drh@noemail.net> | 2020-01-06 18:59:46 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-01-06 18:59:46 +0000 |
commit | 2e26a602a3417bcc8ea65a434b7f56f608127dd2 (patch) | |
tree | cd25174504a19b569ec4a9271a7da685a4b3658b /src/expr.c | |
parent | 65cdae00ec696764573d418c4c98eb46c358a331 (diff) | |
download | sqlite-2e26a602a3417bcc8ea65a434b7f56f608127dd2.tar.gz sqlite-2e26a602a3417bcc8ea65a434b7f56f608127dd2.zip |
Backout change [4d0b9109f7a5312d4e1] because the conditional it added is
no longer reachable due to check-in [1409758f72c0206c].
FossilOrigin-Name: b3f2696705cc3e7b038f156423f808432a4680ea7e313dc15e34bdf6b1845655
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index a89730fe9..4e8703e55 100644 --- a/src/expr.c +++ b/src/expr.c @@ -2310,7 +2310,7 @@ static Select *isCandidateForInOpt(Expr *pX){ testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); return 0; /* No DISTINCT keyword and no aggregate functions */ } - if( p->pGroupBy ) return 0; /* Has no GROUP BY clause */ + assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ if( p->pLimit ) return 0; /* Has no LIMIT clause */ if( p->pWhere ) return 0; /* Has no WHERE clause */ pSrc = p->pSrc; |