Ludovic Pollet commented on Bug HHH-4700

The previous replacement was given for Case2Node.java.

For CaseNode.java, it must be:

public Type getDataType() {
AST ast = getFirstChild().getFirstChild().getNextSibling();
if (ast instanceof SelectExpression) { return ((SelectExpression)ast).getDataType(); }
if (ast instanceof SqlNode) { return ((SqlNode)ast).getDataType(); }
// case expression has no valid type ?;
return null;
}

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira