Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-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 E82E710239 for ; Mon, 26 Aug 2013 12:40:53 +0000 (UTC) Received: (qmail 25662 invoked by uid 500); 26 Aug 2013 12:40:53 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 25556 invoked by uid 500); 26 Aug 2013 12:40:53 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 25543 invoked by uid 500); 26 Aug 2013 12:40:52 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 25538 invoked by uid 99); 26 Aug 2013 12:40:52 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Aug 2013 12:40:52 +0000 Date: Mon, 26 Aug 2013 12:40:52 +0000 (UTC) From: "Phabricator (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HIVE-4375) Single sourced multi insert consists of native and non-native table mixed throws NPE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-4375?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Phabricator updated HIVE-4375: ------------------------------ Attachment: HIVE-4375.D10329.3.patch navis updated the revision "HIVE-4375 [jira] Single sourced multi insert consists of native and non-native table mixed throws NPE". Missed to update this Reviewers: ashutoshc, JIRA REVISION DETAIL https://reviews.facebook.net/D10329 CHANGE SINCE LAST DIFF https://reviews.facebook.net/D10329?vs=32775&id=39027#toc BRANCH HIVE-4375 ARCANIST PROJECT hive AFFECTED FILES hbase-handler/src/test/queries/positive/hbase_single_sourced_multi_insert.q hbase-handler/src/test/results/positive/hbase_single_sourced_multi_insert.q.out ql/src/java/org/apache/hadoop/hive/ql/optimizer/GenMRFileSink1.java To: JIRA, ashutoshc, navis Cc: njain > Single sourced multi insert consists of native and non-native table mixed throws NPE > ------------------------------------------------------------------------------------ > > Key: HIVE-4375 > URL: https://issues.apache.org/jira/browse/HIVE-4375 > Project: Hive > Issue Type: Bug > Components: Query Processor > Affects Versions: 0.11.0 > Reporter: Navis > Assignee: Navis > Priority: Minor > Attachments: HIVE-4375.D10329.1.patch, HIVE-4375.D10329.2.patch, HIVE-4375.D10329.3.patch > > > CREATE TABLE src_x1(key string, value string); > CREATE TABLE src_x2(key string, value string) > STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler' > WITH SERDEPROPERTIES ("hbase.columns.mapping" = ":key,cf:string"); > explain > from src a > insert overwrite table src_x1 > select key,value where a.key > 0 AND a.key < 50 > insert overwrite table src_x2 > select key,value where a.key > 50 AND a.key < 100; > throws, > {noformat} > java.lang.NullPointerException > at org.apache.hadoop.hive.ql.optimizer.GenMRFileSink1.addStatsTask(GenMRFileSink1.java:236) > at org.apache.hadoop.hive.ql.optimizer.GenMRFileSink1.process(GenMRFileSink1.java:126) > at org.apache.hadoop.hive.ql.lib.DefaultRuleDispatcher.dispatch(DefaultRuleDispatcher.java:89) > at org.apache.hadoop.hive.ql.lib.DefaultGraphWalker.dispatch(DefaultGraphWalker.java:87) > at org.apache.hadoop.hive.ql.parse.GenMapRedWalker.walk(GenMapRedWalker.java:55) > at org.apache.hadoop.hive.ql.parse.GenMapRedWalker.walk(GenMapRedWalker.java:67) > at org.apache.hadoop.hive.ql.parse.GenMapRedWalker.walk(GenMapRedWalker.java:67) > at org.apache.hadoop.hive.ql.parse.GenMapRedWalker.walk(GenMapRedWalker.java:67) > at org.apache.hadoop.hive.ql.lib.DefaultGraphWalker.startWalking(DefaultGraphWalker.java:101) > at org.apache.hadoop.hive.ql.parse.SemanticAnalyzer.genMapRedTasks(SemanticAnalyzer.java:8354) > at org.apache.hadoop.hive.ql.parse.SemanticAnalyzer.analyzeInternal(SemanticAnalyzer.java:8759) > at org.apache.hadoop.hive.ql.parse.BaseSemanticAnalyzer.analyze(BaseSemanticAnalyzer.java:279) > at org.apache.hadoop.hive.ql.Driver.compile(Driver.java:433) > at org.apache.hadoop.hive.ql.Driver.compile(Driver.java:337) > at org.apache.hadoop.hive.ql.Driver.run(Driver.java:902) > at org.apache.hadoop.hive.cli.CliDriver.processLocalCmd(CliDriver.java:259) > at org.apache.hadoop.hive.cli.CliDriver.processCmd(CliDriver.java:216) > at org.apache.hadoop.hive.cli.CliDriver.processLine(CliDriver.java:413) > at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:756) > at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:614) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.hadoop.util.RunJar.main(RunJar.java:186) > {noformat} -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira