Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 81857200BEF for ; Tue, 20 Dec 2016 17:59:00 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 80498160B29; Tue, 20 Dec 2016 16:59:00 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CF48E160B33 for ; Tue, 20 Dec 2016 17:58:59 +0100 (CET) Received: (qmail 9389 invoked by uid 500); 20 Dec 2016 16:58:58 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 9173 invoked by uid 99); 20 Dec 2016 16:58:58 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Dec 2016 16:58:58 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 7AB262C2A67 for ; Tue, 20 Dec 2016 16:58:58 +0000 (UTC) Date: Tue, 20 Dec 2016 16:58:58 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-17297) Single Filter in parenthesis cannot be parsed correctly MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 20 Dec 2016 16:59:00 -0000 [ https://issues.apache.org/jira/browse/HBASE-17297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15764671#comment-15764671 ] Hudson commented on HBASE-17297: -------------------------------- SUCCESS: Integrated in Jenkins build HBase-0.98-matrix #427 (See [https://builds.apache.org/job/HBase-0.98-matrix/427/]) HBASE-17297 Single Filter in parenthesis cannot be parsed correctly (apurtell: rev ecdcb2281f75daa2d797af3aa4df5582a0dc4821) * (edit) hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestParseFilter.java * (edit) hbase-client/src/main/java/org/apache/hadoop/hbase/filter/ParseFilter.java > Single Filter in parenthesis cannot be parsed correctly > ------------------------------------------------------- > > Key: HBASE-17297 > URL: https://issues.apache.org/jira/browse/HBASE-17297 > Project: HBase > Issue Type: Bug > Components: Filters > Reporter: Xuesen Liang > Assignee: Xuesen Liang > Fix For: 2.0.0, 1.4.0, 0.98.24 > > Attachments: 17297.master.patch > > > {code} > hbase(main):010:0* put 'testtable', 'row1', 'cf1:a', 'ab' > 0 row(s) in 0.1800 seconds > hbase(main):011:0> scan 'testtable' > ROW COLUMN+CELL > row1 column=cf1:a, timestamp=1481538756308, value=ab > hbase(main):012:0> scan 'testtable', FILTER=>"(ValueFilter(=,'binary:ab'))" > ROW COLUMN+CELL > row1 column=cf1:a, timestamp=1481538756308, value=ab > hbase(main):013:0* scan 'testtable', FILTER=>"(ValueFilter(=,'binary:x') AND ValueFilter(=,'binary:y')) OR ValueFilter(=,'binary:ab')" > ROW COLUMN+CELL > row1 column=cf1:a, timestamp=1481538756308, value=ab > hbase(main):014:0> scan 'testtable', FILTER=>"(ValueFilter(=,'binary:x') AND (ValueFilter(=,'binary:y'))) OR ValueFilter(=,'binary:ab')" > ROW COLUMN+CELL > 0 row(s) in 0.0100 seconds > {code} > In the last scan, we should got a row. > The inner cause is that the last filter is parsed incorrectly. -- This message was sent by Atlassian JIRA (v6.3.4#6332)