Skip to content

Commit

Permalink
Fixed missing conversion. The element absence returns null, but the c…
Browse files Browse the repository at this point in the history
…orrect value to send back is an empty string. It was fixed in CatalogSchemaHandler but not here.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@118 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Sep 17, 2008
1 parent c8f266e commit 3b1e745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/olap4j/driver/xmla/XmlaOlap4jConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ public void handle(Element row, Context context, List<XmlaOlap4jSchema> list) th
list.add(
new XmlaOlap4jSchema(
context.getCatalog(row),
schemaName));
(schemaName == null) ? "" : schemaName));
}
}

Expand Down

0 comments on commit 3b1e745

Please sign in to comment.