[ https://issues.apache.org/jira/browse/HBASE-22011?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16789509#comment-16789509 ]
Hudson commented on HBASE-22011: -------------------------------- Results for branch master [build #853 on builds.a.o|https://builds.apache.org/job/HBase%20Nightly/job/master/853/]: (x) *{color:red}-1 overall{color}* ---- details (if available): (/) {color:green}+1 general checks{color} -- For more information [see general report|https://builds.apache.org/job/HBase%20Nightly/job/master/853//General_Nightly_Build_Report/] (/) {color:green}+1 jdk8 hadoop2 checks{color} -- For more information [see jdk8 (hadoop2) report|https://builds.apache.org/job/HBase%20Nightly/job/master/853//JDK8_Nightly_Build_Report_(Hadoop2)/] (x) {color:red}-1 jdk8 hadoop3 checks{color} -- For more information [see jdk8 (hadoop3) report|https://builds.apache.org/job/HBase%20Nightly/job/master/853//JDK8_Nightly_Build_Report_(Hadoop3)/] (x) {color:red}-1 source release artifact{color} -- See build output for details. (x) {color:red}-1 client integration test{color} -- Something went wrong with this stage, [check relevant console output|https://builds.apache.org/job/HBase%20Nightly/job/master/853//console]. > ThriftUtilities.getFromThrift should set filter when not set columns > -------------------------------------------------------------------- > > Key: HBASE-22011 > URL: https://issues.apache.org/jira/browse/HBASE-22011 > Project: HBase > Issue Type: Bug > Affects Versions: 2.2.0 > Reporter: Bing Xiao > Assignee: Bing Xiao > Priority: Major > Fix For: 2.2.1 > > Attachments: HBASE-22011-branch-2-v1.patch, > HBASE-22011-branch-2.2-v1.patch, HBASE-22011-v1.patch > > > ThriftUtilities.getFromThrift, if TGet wihtout columns the filter is ignore. > {code:java} > if (!in.isSetColumns()) { > return out; > } > for (TColumn column : in.getColumns()) { > if (column.isSetQualifier()) { > out.addColumn(column.getFamily(), column.getQualifier()); > } else { > out.addFamily(column.getFamily()); > } > } > if (in.isSetFilterBytes()) { > out.setFilter(filterFromThrift(in.getFilterBytes())); > }{code} -- This message was sent by Atlassian JIRA (v7.6.3#76005)