From 858f9161b1a2f1d663aaea55fd87acc2683c8a96 Mon Sep 17 00:00:00 2001 From: Luc Boudreau Date: Mon, 9 Feb 2009 17:12:05 +0000 Subject: [PATCH] Fixes bug 2582046. All tests passed. git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@143 c6a108a4-781c-0410-a6c6-c2d559e19af0 --- src/org/olap4j/query/Query.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/olap4j/query/Query.java b/src/org/olap4j/query/Query.java index 5e35560..32b9367 100644 --- a/src/org/olap4j/query/Query.java +++ b/src/org/olap4j/query/Query.java @@ -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);