Return-Path: X-Original-To: apmail-drill-issues-archive@minotaur.apache.org Delivered-To: apmail-drill-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 83D6E113A0 for ; Fri, 20 Jun 2014 20:28:49 +0000 (UTC) Received: (qmail 49992 invoked by uid 500); 20 Jun 2014 20:28:49 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 49966 invoked by uid 500); 20 Jun 2014 20:28:49 -0000 Mailing-List: contact issues-help@drill.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.incubator.apache.org Delivered-To: mailing list issues@drill.incubator.apache.org Received: (qmail 49956 invoked by uid 99); 20 Jun 2014 20:28:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jun 2014 20:28:49 +0000 X-ASF-Spam-Status: No, hits=-2000.7 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 20 Jun 2014 20:28:48 +0000 Received: (qmail 48809 invoked by uid 99); 20 Jun 2014 20:28:28 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Jun 2014 20:28:28 +0000 Date: Fri, 20 Jun 2014 20:28:28 +0000 (UTC) From: "Jacques Nadeau (JIRA)" To: issues@drill.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (DRILL-772) Null values are not filtered out in query result MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DRILL-772?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14039289#comment-14039289 ] Jacques Nadeau commented on DRILL-772: -------------------------------------- fixed in efa3274 or earlier > Null values are not filtered out in query result > ------------------------------------------------ > > Key: DRILL-772 > URL: https://issues.apache.org/jira/browse/DRILL-772 > Project: Apache Drill > Issue Type: Bug > Components: Execution - Operators > Reporter: Krystal > Fix For: 1.0.0-BETA1 > > > git.commit.id.abbrev=70fab8c > 0: jdbc:drill:schema=dfs> select voter_id, name, age from voter where age not between 20 and 80; > +------------+------------+------------+ > | voter_id | name | age | > +------------+------------+------------+ > | 3 | [B@183c94e6 | 18 | > | 17 | [B@31539478 | null | > | 22 | [B@66386b94 | 19 | > | 57 | [B@21ef5fa | 19 | > | 59 | [B@3ea6f12c | 18 | > | 70 | [B@42239fd6 | 18 | > | 85 | [B@30d2bc86 | 19 | > | 92 | [B@5b571a74 | null | > | 109 | [B@3389e485 | 18 | > | 111 | [B@21f9f232 | 18 | > The output above returned age with "null" values. In oracle and postgres, the rows with "null" value for age are filtered out. -- This message was sent by Atlassian JIRA (v6.2#6252)