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 903E4200B30 for ; Mon, 4 Jul 2016 22:25:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8EF67160A65; Mon, 4 Jul 2016 20:25:15 +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 D7049160A34 for ; Mon, 4 Jul 2016 22:25:14 +0200 (CEST) Received: (qmail 23248 invoked by uid 500); 4 Jul 2016 20:25:14 -0000 Mailing-List: contact dev-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list dev@phoenix.apache.org Received: (qmail 23237 invoked by uid 99); 4 Jul 2016 20:25:13 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jul 2016 20:25:13 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 980081812B9 for ; Mon, 4 Jul 2016 20:25:13 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -5.446 X-Spam-Level: X-Spam-Status: No, score=-5.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id qGhxktgMtG8i for ; Mon, 4 Jul 2016 20:25:13 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 1316D5F24D for ; Mon, 4 Jul 2016 20:25:11 +0000 (UTC) Received: (qmail 22920 invoked by uid 99); 4 Jul 2016 20:25:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Jul 2016 20:25:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id E867E2C029F for ; Mon, 4 Jul 2016 20:25:10 +0000 (UTC) Date: Mon, 4 Jul 2016 20:25:10 +0000 (UTC) From: "Kevin Liew (JIRA)" To: dev@phoenix.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (PHOENIX-3046) `NOT LIKE '%'` returns results MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 04 Jul 2016 20:25:15 -0000 Kevin Liew created PHOENIX-3046: ----------------------------------- Summary: `NOT LIKE '%'` returns results Key: PHOENIX-3046 URL: https://issues.apache.org/jira/browse/PHOENIX-3046 Project: Phoenix Issue Type: Bug Affects Versions: 4.7.0 Reporter: Kevin Liew Priority: Minor The following returns all rows in the table when it should return no rows: {code}select * from emp where first_name not like '%%'{code} The following returns no rows as expected: {code}select * from emp where first_name not like '%%'{code} first_name is a VARCHAR column -- This message was sent by Atlassian JIRA (v6.3.4#6332)