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 3D5C5176B1 for ; Wed, 4 Feb 2015 19:55:34 +0000 (UTC) Received: (qmail 96549 invoked by uid 500); 4 Feb 2015 19:55:35 -0000 Delivered-To: apmail-drill-dev-archive@drill.apache.org Received: (qmail 96481 invoked by uid 500); 4 Feb 2015 19:55:35 -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 96432 invoked by uid 99); 4 Feb 2015 19:55:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2015 19:55:35 +0000 Date: Wed, 4 Feb 2015 19:55:34 +0000 (UTC) From: "Hanifi Gunes (JIRA)" To: dev@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DRILL-2163) Projecting nested types past join 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-2163: ----------------------------------- Summary: Projecting nested types past join returns invalid result Key: DRILL-2163 URL: https://issues.apache.org/jira/browse/DRILL-2163 Project: Apache Drill Issue Type: Bug Reporter: Hanifi Gunes Assignee: Hanifi Gunes Priority: Critical Take the following data files and query: {code:title=a.json} { "uid": 1, "events" : [ { "evnt_id":"e1"} ] } {code} {code:title=b.json} { "uid": 1, "transactions" : [ { "trans_id":"t1"} ] } {code} {code} select t1.events, t2.transactions from dfs.`local`.`2122/a.json` t1, dfs.`local`.`2122/b.json` t2 where t1.uid = t2.uid {code} The projection of a nested value coming out of right side of join, {{transactions}} as of b6a3878, reports empty result. -- This message was sent by Atlassian JIRA (v6.3.4#6332)