Skip to content

Commit

Permalink
Fixes bug 2582046. All tests passed.
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@143 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Feb 9, 2009
1 parent ce2aa44 commit 858f916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/olap4j/query/Query.java
Expand Up @@ -64,7 +64,7 @@ public Query(String name, Cube cube) throws SQLException {
across = new QueryAxis(this, Axis.COLUMNS);
down = new QueryAxis(this, Axis.ROWS);
filter = new QueryAxis(this, Axis.FILTER);
axes.put(null, unused);
axes.put(Axis.UNUSED, unused);
axes.put(Axis.COLUMNS, across);
axes.put(Axis.ROWS, down);
axes.put(Axis.FILTER, filter);
Expand Down

0 comments on commit 858f916

Please sign in to comment.