Repository: phoenix Updated Branches: refs/heads/4.x-HBase-0.98 22e26dccd -> 88078fd5e
PHOENIX-3608 KeyRange interset should return EMPTY_RANGE when one of it is NULL_RANGE(Rajeshbabu) Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/88078fd5 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/88078fd5 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/88078fd5 Branch: refs/heads/4.x-HBase-0.98 Commit: 88078fd5eba05fcb717577b527d3de7b0801f0fc Parents: 22e26dc Author: Rajeshbabu Chintaguntla <[email protected]> Authored: Fri Jan 20 19:07:30 2017 +0530 Committer: Rajeshbabu Chintaguntla <[email protected]> Committed: Fri Jan 20 19:07:30 2017 +0530 ---------------------------------------------------------------------- .../src/main/java/org/apache/phoenix/query/KeyRange.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/88078fd5/phoenix-core/src/main/java/org/apache/phoenix/query/KeyRange.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/query/KeyRange.java b/phoenix-core/src/main/java/org/apache/phoenix/query/KeyRange.java index f4bf793..babce9d 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/query/KeyRange.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/query/KeyRange.java @@ -356,10 +356,9 @@ public class KeyRange implements Writable { boolean newUpperInclusive; // Special case for null, is it is never included another range // except for null itself. - if (this == IS_NULL_RANGE) { - if (range == IS_NULL_RANGE) { + if (this == IS_NULL_RANGE && range == IS_NULL_RANGE) { return IS_NULL_RANGE; - } + } else if(this == IS_NULL_RANGE || range == IS_NULL_RANGE) { return EMPTY_RANGE; } if (lowerUnbound()) {
