Repository: hbase Updated Branches: refs/heads/master 17007685c -> c0f265384
HBASE-17862 Fix a condition that always returns true Signed-off-by: Chia-Ping Tsai <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c0f26538 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c0f26538 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c0f26538 Branch: refs/heads/master Commit: c0f265384f09d5b36e2065083922ba428edef798 Parents: 1700768 Author: [email protected] <[email protected]> Authored: Mon May 1 23:21:40 2017 -0400 Committer: Chia-Ping Tsai <[email protected]> Committed: Wed May 3 00:29:00 2017 +0800 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/filter/ColumnPaginationFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/c0f26538/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/ColumnPaginationFilter.java ---------------------------------------------------------------------- diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/ColumnPaginationFilter.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/ColumnPaginationFilter.java index 696f868..2ce9746 100644 --- a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/ColumnPaginationFilter.java +++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/ColumnPaginationFilter.java @@ -207,7 +207,7 @@ public class ColumnPaginationFilter extends FilterBase { ColumnPaginationFilter other = (ColumnPaginationFilter)o; if (this.columnOffset != null) { - return this.getLimit() == this.getLimit() && + return this.getLimit() == other.getLimit() && Bytes.equals(this.getColumnOffset(), other.getColumnOffset()); } return this.getLimit() == other.getLimit() && this.getOffset() == other.getOffset();
