From 1089cf6e8543ad1659c350123a77599594cae108 Mon Sep 17 00:00:00 2001 From: aleph-zero Date: Thu, 1 Oct 2015 15:30:24 -0700 Subject: [PATCH] [DRILL-3300] Bug fix: Unused method parameter Fixed a bug whereby setFilterPushedDown(boolean) was not using the value passed to it to set an internal flag. Instead the method was always setting the value to 'true'. --- .../org/apache/drill/exec/store/hbase/HBaseGroupScan.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseGroupScan.java b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseGroupScan.java index e52e2e49a56..76a47eb841e 100644 --- a/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseGroupScan.java +++ b/contrib/storage-hbase/src/main/java/org/apache/drill/exec/store/hbase/HBaseGroupScan.java @@ -419,8 +419,8 @@ public boolean canPushdownProjects(List columns) { } @JsonIgnore - public void setFilterPushedDown(boolean b) { - this.filterPushedDown = true; + public void setFilterPushedDown(boolean filterPushedDown) { + this.filterPushedDown = filterPushedDown; } @JsonIgnore