[ https://issues.apache.org/jira/browse/HIVE-21231?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16809315#comment-16809315 ]
Vineet Garg commented on HIVE-21231: ------------------------------------ There are still some queries which are still regressing (queries have sq_count_check branch now) e.g. query44 and couple of queries in subquery_scalar I'll open a separate jira to fix it. +1 (pending tests) for this patch. > HiveJoinAddNotNullRule support for range predicates > --------------------------------------------------- > > Key: HIVE-21231 > URL: https://issues.apache.org/jira/browse/HIVE-21231 > Project: Hive > Issue Type: Improvement > Components: CBO > Reporter: Jesus Camacho Rodriguez > Assignee: Miklos Gergely > Priority: Major > Labels: newbie, pull-request-available > Attachments: HIVE-21231.01.patch, HIVE-21231.02.patch, > HIVE-21231.03.patch, HIVE-21231.04.patch, HIVE-21231.05.patch, > HIVE-21231.06.patch, HIVE-21231.07.patch, HIVE-21231.08.patch, > HIVE-21231.09.patch > > Time Spent: 10m > Remaining Estimate: 0h > > For instance, given the following query: > {code:sql} > SELECT t0.col0, t0.col1 > FROM > ( > SELECT col0, col1 FROM tab > ) AS t0 > INNER JOIN > ( > SELECT col0, col1 FROM tab > ) AS t1 > ON t0.col0 < t1.col0 AND t0.col1 > t1.col1 > {code} > we could still infer that col0 and col1 cannot be null for any of the inputs. > Currently we do not. -- This message was sent by Atlassian JIRA (v7.6.3#76005)