You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
chore(): review fixes
This commit is contained in:
@ -51,9 +51,9 @@ bool Rule::apply(execplan::CalpontSelectExecutionPlan& root) const
|
||||
bool hasBeenApplied = false;
|
||||
do
|
||||
{
|
||||
changedThisRound = walk(root) && !applyOnlyOnce;
|
||||
hasBeenApplied = changedThisRound;
|
||||
} while (changedThisRound);
|
||||
changedThisRound = walk(root);
|
||||
hasBeenApplied |= changedThisRound;
|
||||
} while (changedThisRound && !applyOnlyOnce);
|
||||
|
||||
return hasBeenApplied;
|
||||
}
|
||||
|
Reference in New Issue
Block a user