1
0
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:
drh
2025-01-24 20:59:12 +00:00
parent 77731d5ec0
commit bc7e41c03c
3 changed files with 9 additions and 9 deletions

View File

@@ -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;
}
}