mirror of
https://github.com/sqlite/sqlite.git
synced 2026-01-06 08:01:16 +03:00
Remove an incorrect ALWAYS() added in check-in [7cfbe14d199bb631].
FossilOrigin-Name: 431a1a29f93dc642779dc21c3a0edad5fcda1d175e9d1e3b216fa02c234fe774
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user