Skip to content

Commit

Permalink
MONDRIAN: olap4j bug 2527862, "Failed to get Hierarchy list for parti…
Browse files Browse the repository at this point in the history
…cular dimension"

    also applied to the Mondrian olap4j driver.

[git-p4: depot-paths = "//open/mondrian/": change = 12260]
  • Loading branch information
julianhyde committed Jan 22, 2009
1 parent 6c779fb commit e685cce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/mondrian/olap4j/MondrianOlap4jDatabaseMetaData.java
Expand Up @@ -976,7 +976,7 @@ public ResultSet getHierarchies(
String catalog,
String schemaPattern,
String cubeNamePattern,
String dimensionNamePattern,
String dimensionUniqueName,
String hierarchyNamePattern)
throws OlapException
{
Expand All @@ -985,7 +985,7 @@ public ResultSet getHierarchies(
"CATALOG_NAME", catalog,
"SCHEMA_NAME", wildcard(schemaPattern),
"CUBE_NAME", wildcard(cubeNamePattern),
"DIMENSION_NAME", wildcard(dimensionNamePattern),
"DIMENSION_UNIQUE_NAME", dimensionUniqueName,
"HIERARCHY_NAME", wildcard(hierarchyNamePattern));
}

Expand Down

0 comments on commit e685cce

Please sign in to comment.