Namit Jain created HIVE-4316:
--------------------------------
Summary: bug introduced by HIVE-3464
Key: HIVE-4316
URL: https://issues.apache.org/jira/browse/HIVE-4316
Project: Hive
Issue Type: Bug
Components: Query Processor
Reporter: Namit Jain
// for outer joins, it should not exceed 16 aliases (short type)
if (!node.getNoOuterJoin() || !target.getNoOuterJoin()) {
if (node.getRightAliases().length + target.getRightAliases().length
+ 1 > 16) {
LOG.info(ErrorMsg.JOINNODE_OUTERJOIN_MORETHAN_16);
continue;
}
}
It is checking RightAliases() twice
--
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