Skip to content

Commit

Permalink
MONDRIAN: Fixes a javadoc failure. Also fixes a failing test. The ord…
Browse files Browse the repository at this point in the history
…er of the measures in the query have changed.

[git-p4: depot-paths = "//open/mondrian/": change = 15008]
  • Loading branch information
lucboudreau committed Mar 15, 2012
1 parent 581177a commit b6464fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/mondrian/server/monitor/CellCacheEvent.java
Expand Up @@ -24,7 +24,7 @@ public abstract class CellCacheEvent extends ExecutionEvent {
* @param serverId Server ID from which originated the event.
* @param connectionId Connection ID from which originated the event.
* @param statementId Statement ID from which originated the event.
* @param executionIdExecution ID from which originated the event.
* @param executionId Execution ID from which originated the event.
* @param source The source of the event, being a value of Source.
*/
public CellCacheEvent(
Expand Down
4 changes: 2 additions & 2 deletions testsrc/main/mondrian/test/clearview/BatchedFillTest.ref.xml
Expand Up @@ -138,8 +138,8 @@ group by
select
"time_by_day"."the_year" as "c0",
"product_class"."product_family" as "c1",
sum("sales_fact_1997"."store_sales") as "m0",
sum("sales_fact_1997"."unit_sales") as "m1"
sum("sales_fact_1997"."unit_sales") as "m0",
sum("sales_fact_1997"."store_sales") as "m1"
from
"time_by_day" as "time_by_day",
"sales_fact_1997" as "sales_fact_1997",
Expand Down

0 comments on commit b6464fa

Please sign in to comment.