Skip to content

Commit

Permalink
MONDRIAN: additional change required for change #11800, bug #2141503 …
Browse files Browse the repository at this point in the history
…fix. Missed committing RolapCube.

[git-p4: depot-paths = "//open/mondrian/": change = 11962]
  • Loading branch information
Will Gorman committed Nov 17, 2008
1 parent 8a2fc4a commit 533e206
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/mondrian/rolap/RolapCube.java
Expand Up @@ -2242,6 +2242,13 @@ public OlapElement lookupChild(
// Note that non-exact matches aren't supported at this level,
// so the matchType is ignored
String status = null;
OlapElement oe = null;
if (matchType == MatchType.EXACT_SCHEMA) {
oe = super.lookupChild(schemaReader, s, MatchType.EXACT_SCHEMA);
} else {
oe = super.lookupChild(schemaReader, s, MatchType.EXACT);
}

OlapElement oe = super.lookupChild(schemaReader, s, MatchType.EXACT);

if (oe == null) {
Expand Down

0 comments on commit 533e206

Please sign in to comment.