From issues-return-4376-apmail-hive-issues-archive=hive.apache.org@hive.apache.org Mon Apr 13 23:31:18 2015 Return-Path: X-Original-To: apmail-hive-issues-archive@minotaur.apache.org Delivered-To: apmail-hive-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 B7A2517FD2 for ; Mon, 13 Apr 2015 23:31:18 +0000 (UTC) Received: (qmail 76363 invoked by uid 500); 13 Apr 2015 23:31:12 -0000 Delivered-To: apmail-hive-issues-archive@hive.apache.org Received: (qmail 76344 invoked by uid 500); 13 Apr 2015 23:31:12 -0000 Mailing-List: contact issues-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 issues@hive.apache.org Received: (qmail 76333 invoked by uid 99); 13 Apr 2015 23:31:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Apr 2015 23:31:12 +0000 Date: Mon, 13 Apr 2015 23:31:12 +0000 (UTC) From: "Selina Zhang (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-10308) Vectorization execution throws java.lang.IllegalArgumentException: Unsupported complex type: MAP 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-10308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14493272#comment-14493272 ] Selina Zhang commented on HIVE-10308: ------------------------------------- Actually the test results show only 1 test failure and the failure is 33 days old. So should be irrelevant. > Vectorization execution throws java.lang.IllegalArgumentException: Unsupported complex type: MAP > ------------------------------------------------------------------------------------------------ > > Key: HIVE-10308 > URL: https://issues.apache.org/jira/browse/HIVE-10308 > Project: Hive > Issue Type: Bug > Components: Vectorization > Affects Versions: 0.14.0, 0.13.1, 1.2.0, 1.1.0 > Reporter: Selina Zhang > Assignee: Selina Zhang > Attachments: HIVE-10308.1.patch > > > Steps to reproduce: > -------------------- > CREATE TABLE test_orc (a INT, b MAP) STORED AS ORC; > INSERT OVERWRITE TABLE test_orc SELECT 1, MAP(1, "one", 2, "two") FROM src LIMIT 1; > CREATE TABLE test(key INT) ; > INSERT OVERWRITE TABLE test SELECT 1 FROM src LIMIT 1; > set hive.vectorized.execution.enabled=true; > set hive.auto.convert.join=false; > select l.key from test l left outer join test_orc r on (l.key= r.a) where r.a is not null; > Stack trace: > -------------------- > Caused by: java.lang.IllegalArgumentException: Unsupported complex type: MAP > at org.apache.hadoop.hive.ql.exec.vector.expressions.VectorExpressionWriterFactory.genVectorExpressionWritable(VectorExpressionWriterFactory.java:456) > at org.apache.hadoop.hive.ql.exec.vector.expressions.VectorExpressionWriterFactory.processVectorInspector(VectorExpressionWriterFactory.java:1191) > at org.apache.hadoop.hive.ql.exec.vector.VectorReduceSinkOperator.initializeOp(VectorReduceSinkOperator.java:58) > at org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:362) > at org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:481) > at org.apache.hadoop.hive.ql.exec.Operator.initializeChildren(Operator.java:438) > at org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:375) > at org.apache.hadoop.hive.ql.exec.MapOperator.initializeMapOperator(MapOperator.java:442) > at org.apache.hadoop.hive.ql.exec.tez.MapRecordProcessor.init(MapRecordProcessor.java:198) -- This message was sent by Atlassian JIRA (v6.3.4#6332)