Skip to content

Commit

Permalink
Changed the optimize predicates bloat logic to what it originally was…
Browse files Browse the repository at this point in the history
… (relative instead of absolute)

[git-p4: depot-paths = "//open/mondrian/": change = 10053]
  • Loading branch information
Matt Campbell authored and Matt Campbell committed Oct 19, 2007
1 parent cd3f171 commit d95bf91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/mondrian/rolap/agg/Aggregation.java
Expand Up @@ -334,7 +334,7 @@ public StarColumnPredicate[] optimizePredicates(

for (Integer j : indexes) {
abloat = abloat * bloats[j];
if (bloats[j] <= aBloatLimit) {
if (abloat <= aBloatLimit) {
break;
}
// eliminate this constraint
Expand Down

0 comments on commit d95bf91

Please sign in to comment.