Skip to content

Commit

Permalink
MONDRIAN: Rename calc members in test query, because now cube has the…
Browse files Browse the repository at this point in the history
… same calc members but with different semantics.

[git-p4: depot-paths = "//open/mondrian/": change = 3189]
  • Loading branch information
julianhyde committed Feb 11, 2005
1 parent b5b5168 commit 1a433ec
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<mdbTest>
<mdxQuery>WITH MEMBER Measures.[Profit] AS '(Measures.[Store Sales] - Measures.[Store Cost])' MEMBER Measures.[Profit Growth] AS '(Measures.[Profit]) / COALESCEEMPTY((Measures.[Profit], [Time].PREVMEMBER), Measures.[Profit])', FORMAT_STRING = '#.00%' SELECT {Measures.[Profit], Measures.[Profit Growth]} ON COLUMNS, {DESCENDANTS([Time].[1997], [Month])} ON ROWS FROM [Sales]</mdxQuery>
<mdxQuery>WITH MEMBER Measures.[Profit] AS '(Measures.[Store Sales] - Measures.[Store Cost])' MEMBER Measures.[Profit Increase] AS '(Measures.[Profit]) / COALESCEEMPTY((Measures.[Profit], [Time].PREVMEMBER), Measures.[Profit])', FORMAT_STRING = '#.00%' SELECT {Measures.[Profit], Measures.[Profit Increase]} ON COLUMNS, {DESCENDANTS([Time].[1997], [Month])} ON ROWS FROM [Sales]</mdxQuery>
<dataResult>
<slicer>
<dimensions>
Expand Down Expand Up @@ -41,7 +41,7 @@
<member>[Measures].[Profit]</member>
</tuple>
<tuple>
<member>[Measures].[Profit Growth]</member>
<member>[Measures].[Profit Increase]</member>
</tuple>
</tuples>
</columns>
Expand Down

0 comments on commit 1a433ec

Please sign in to comment.