Skip to content

Commit

Permalink
Updates to latest Mondrian 4.0 drillthrough code.
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@546 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Aug 10, 2012
1 parent 138579e commit 849b745
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions testsrc/org/olap4j/ConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1194,8 +1194,9 @@ public void testCell() throws Exception {
// Most databases return 5 columns. Derby returns 9 because of
// 4 columns in the ORDER BY clause.
assertTrue(metaData.getColumnCount() >= 5);
assertEquals("Day (Key)", metaData.getColumnLabel(1));
assertEquals("Quarter (Key)", metaData.getColumnLabel(2));
assertEquals("Quarter", metaData.getColumnLabel(1));
assertEquals("Quarter_0", metaData.getColumnLabel(2));
assertEquals("Month", metaData.getColumnLabel(3));
assertEquals("Store Sales", metaData.getColumnLabel(11));
resultSet.close();
break;
Expand Down

0 comments on commit 849b745

Please sign in to comment.