Gopal V created HIVE-9443: ----------------------------- Summary: ORC PPD - fix fuzzy case evaluation of IS_NULL Key: HIVE-9443 URL: https://issues.apache.org/jira/browse/HIVE-9443 Project: Hive Issue Type: Bug Components: File Formats Affects Versions: 0.15.0 Reporter: Gopal V Assignee: Gopal V Fix For: 0.15.0
ORC PPD returns IS_NULL wrong for the fuzz case of some-nulls. The code-flow in effect should be {code} if (min == null) { // all nulls return YES; } else { if (hasNull == true) { // some nulls return YES_NO; //maybe } // no nulls return NO; } {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)