Return-Path: X-Original-To: apmail-drill-dev-archive@www.apache.org Delivered-To: apmail-drill-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B147E18AFB for ; Thu, 30 Apr 2015 06:28:06 +0000 (UTC) Received: (qmail 76281 invoked by uid 500); 30 Apr 2015 06:28:06 -0000 Delivered-To: apmail-drill-dev-archive@drill.apache.org Received: (qmail 76226 invoked by uid 500); 30 Apr 2015 06:28:06 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 76172 invoked by uid 99); 30 Apr 2015 06:28:06 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Apr 2015 06:28:06 +0000 Date: Thu, 30 Apr 2015 06:28:06 +0000 (UTC) From: "mohit kaushik (JIRA)" To: dev@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DRILL-2919) Drill not resolving repeated values in json MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 mohit kaushik created DRILL-2919: ------------------------------------ Summary: Drill not resolving repeated values in json Key: DRILL-2919 URL: https://issues.apache.org/jira/browse/DRILL-2919 Project: Apache Drill Issue Type: Bug Components: Execution - Flow Affects Versions: 0.8.0 Reporter: mohit kaushik Assignee: Chris Westin I have a json file in HDFS named autom.json contains. { "company": [ { "modelName": { "name": "abc" } }, { "modelName": { "name": "xyz" } } ] } When i query select t.company.`modelName` from hdfs.`autom.json` t ; it gives result {"name":"abc"} However, The expected result was both entries. {"name":"abc"} {"name":"xyz"} Even when I query select t.company.`modelName` from hdfs.`autom.json` t where t.company.`modelName`.`name`='xyz' ; it does not find anything. -- This message was sent by Atlassian JIRA (v6.3.4#6332)