diff options
author | drh <> | 2025-01-24 20:59:12 +0000 |
---|---|---|
committer | drh <> | 2025-01-24 20:59:12 +0000 |
commit | bc7e41c03c9009c96cf3f1179ba0545ba3561abe (patch) | |
tree | c5f25e4987774615aaf09e82d1ef603985da008e /src | |
parent | 77731d5ec03b4fecbe615c21bb45e4bc53f64fdf (diff) | |
download | sqlite-bc7e41c03c9009c96cf3f1179ba0545ba3561abe.tar.gz sqlite-bc7e41c03c9009c96cf3f1179ba0545ba3561abe.zip |
Remove an incorrect ALWAYS() added in check-in [7cfbe14d199bb631].
FossilOrigin-Name: 431a1a29f93dc642779dc21c3a0edad5fcda1d175e9d1e3b216fa02c234fe774
Diffstat (limited to 'src')
-rw-r--r-- | src/where.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/where.c b/src/where.c index 14dc99e5c..eeea2e13d 100644 --- a/src/where.c +++ b/src/where.c @@ -5519,7 +5519,7 @@ static int computeMxChoice(WhereInfo *pWInfo){ ** restrict the search for dimension-tables to be tables to the right ** of the fact-table. */ if( iFromIdx+4 > nLoop ) break; /* Impossible to reach nDep>=4 */ - while( ALWAYS(pStart) && pStart->iTab<=iFromIdx ){ + while( pStart && pStart->iTab<=iFromIdx ){ pStart = pStart->pNextLoop; } } |