Skip to content

Commit

Permalink
MONDRIAN: Unbreak Access (somewhat).
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 6986]
  • Loading branch information
julianhyde committed Jun 22, 2006
1 parent 83c522a commit ad8b9e4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions demo/FoodMart.xml
Expand Up @@ -270,6 +270,9 @@ fullname
aggregator="distinct count" formatString="#,###"/>
<Measure name="Promotion Sales" aggregator="sum" formatString="#,###.00">
<MeasureExpression>
<SQL dialect="access">
Iif("sales_fact_1997"."promotion_id" = 0, 0, "sales_fact_1997"."store_sales")
</SQL>
<SQL dialect="oracle">
(case when "sales_fact_1997"."promotion_id" = 0 then 0 else "sales_fact_1997"."store_sales" end)
</SQL>
Expand Down

0 comments on commit ad8b9e4

Please sign in to comment.