8000 Missing overload of getParentUniqueName by rgusmero · Pull Request #1336 · pentaho/mondrian · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Missing overload of getParentUniqueName #1336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions mondrian/src/main/java/mondrian/rolap/RolapCubeMember.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
//
// Copyright (C) 2001-2005 Julian Hyde
// Copyright (C) 2005-2017 Hitachi Vantara and others
// Copyright (C) 2023 Riccardo Gusmeroli
// All Rights Reserved.
*/
package mondrian.rolap;
Expand Down Expand Up @@ -207,6 +208,12 @@ public Object getPropertyValue(String propertyName) {
public final RolapCubeMember getParentMember() {
return parentCubeMember;
}

public String getParentUniqueName() {
return parentCubeMember == null
? null
: parentCubeMember.getUniqueName();
}

// this method is overridden to make sure that any HierarchyExpr returns
// the cube hierarchy vs. shared hierarchy. this is the case for
Expand Down
0