aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/where.c2
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;
}
}