Skip to content

Commit

Permalink
MONDRIAN: Integration of change 15002 into the 3.4 branch.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian-release/3.4/": change = 15006]
  • Loading branch information
lucboudreau committed Mar 15, 2012
1 parent 7d373bd commit b64162c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/mondrian/rolap/RolapResult.java
Expand Up @@ -588,6 +588,7 @@ protected void loadMembers(
evaluator.setCellReader(batchingReader);
while (true) {
axisMembers.clearAxisCount();
final int savepoint = evaluator.savepoint();
try {
evalLoad(
nonAllMembers,
Expand All @@ -601,6 +602,8 @@ protected void loadMembers(
// Decrement count because it wasn't a recursive formula that
// caused the iteration.
--attempt;
} finally {
evaluator.restore(savepoint);
}

if (!phase()) {
Expand Down

0 comments on commit b64162c

Please sign in to comment.