Ted Yu created KYLIN-2613:
-----------------------------
Summary: Wrong variable is used in DimensionDesc#hashCode
Key: KYLIN-2613
URL: https://issues.apache.org/jira/browse/KYLIN-2613
Project: Kylin
Issue Type: Bug
Reporter: Ted Yu
Here is related code:
{code}
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result + ((column == null) ? 0 : name.hashCode());
{code}
The second line is referencing name where column should be referenced.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)