Return-Path: X-Original-To: apmail-incubator-drill-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-drill-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C437E178B5 for ; Fri, 21 Nov 2014 00:03:35 +0000 (UTC) Received: (qmail 26422 invoked by uid 500); 21 Nov 2014 00:03:35 -0000 Delivered-To: apmail-incubator-drill-dev-archive@incubator.apache.org Received: (qmail 26192 invoked by uid 500); 21 Nov 2014 00:03:35 -0000 Mailing-List: contact drill-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: drill-dev@incubator.apache.org Delivered-To: mailing list drill-dev@incubator.apache.org Received: (qmail 26093 invoked by uid 99); 21 Nov 2014 00:03:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Nov 2014 00:03:35 +0000 Date: Fri, 21 Nov 2014 00:03:35 +0000 (UTC) From: "Hanifi Gunes (JIRA)" To: drill-dev@incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DRILL-1764) Count star returns invalid result MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Hanifi Gunes created DRILL-1764: ----------------------------------- Summary: Count star returns invalid result Key: DRILL-1764 URL: https://issues.apache.org/jira/browse/DRILL-1764 Project: Apache Drill Issue Type: Bug Reporter: Hanifi Gunes @fc58c69 [current head] Running a count star on yelp biz dataset {code:sql} SELECT count(*) FROM dfs.`/path/to/yelp-business.json` {code} yields *1,584* rows. However, running count on a specific field like so {code:sql} SELECT count(business_id) FROM dfs.`/path/to/yelp-business.json` {code} returns *15,585* rows as expected since the file has exact the same row count. Running count star must return the exact number of records in the file. -- This message was sent by Atlassian JIRA (v6.3.4#6332)