Skip to content

Commit

Permalink
mondrian: fix build problem in 9529
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 9530]
  • Loading branch information
Rushan Chen committed Jun 29, 2007
1 parent f39748e commit 8490e0b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/main/mondrian/rolap/RolapCube.java
Expand Up @@ -1128,6 +1128,13 @@ public void setCacheAggregations(boolean cache) {
* Clear the in memory aggregate cache associated with this Cube, but
* only if Disabling Caching has been enabled.
*/
public void clearCachedAggregations() {
clearCachedAggregations(false);
}

/**
* Clear the in memory aggregate cache associated with this Cube.
*/
public void clearCachedAggregations(boolean forced) {
if (isVirtual()) {
// TODO:
Expand Down
2 changes: 1 addition & 1 deletion src/main/mondrian/rolap/RolapResult.java
Expand Up @@ -84,7 +84,7 @@ class RolapResult extends ResultBase {
// effect if caching has been disabled, otherwise
// nothing happens.
// Clear the local cache before a query has run
rcube.clearCachedAggregations(false);
rcube.clearCachedAggregations();
// Check if there are modifications to the global aggregate cache
rcube.checkAggregateModifications();

Expand Down

0 comments on commit 8490e0b

Please sign in to comment.