Skip to content

Commit

Permalink
Upgrade mondrian to fix bug: require its XMLA server to return a filt…
Browse files Browse the repository at this point in the history
…er axis in

a query result even if filter axis has 0 tuples.


git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@369 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed Nov 17, 2010
1 parent 0ef4414 commit cae3a13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ivy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<dependency org="hsqldb" name="hsqldb" rev="1.8.0.7"
transitive="false" conf="test->default" />

<dependency org="pentaho" name="mondrian" rev="3.2.1.13914"
<dependency org="pentaho" name="mondrian" rev="3.2.1.13916"
transitive="false" changing="true" conf="test->default" />

<dependency org="eigenbase" name="eigenbase-xom" rev="1.3.0.11999"
Expand Down
4 changes: 2 additions & 2 deletions testsrc/org/olap4j/ConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ public void testEmptyFilter() throws SQLException {
assertEquals(0, filterAxis.getPositionCount());
final List<Position> filterPositions = filterAxis.getPositions();
assertEquals(0, filterPositions.size());
assertEquals(0, filterAxis.getAxisMetaData().getHierarchies().size());
assertEquals(2, filterAxis.getAxisMetaData().getHierarchies().size());
final Cell cell = cellSet.getCell(Arrays.asList(0, 0));
assertTrue(cell.isNull());
}
Expand Down Expand Up @@ -1550,7 +1550,7 @@ public void testBuildParseTree() {
}

/**
* Tests the {@link Cube#lookupMember(java.util.List} method.
* Tests the {@link Cube#lookupMember(java.util.List)} method.
*/
public void testCubeLookupMember() throws Exception {
Class.forName(tester.getDriverClassName());
Expand Down

0 comments on commit cae3a13

Please sign in to comment.