Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 77D97200C53 for ; Tue, 28 Mar 2017 07:31:45 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 76591160B99; Tue, 28 Mar 2017 05:31:45 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BE6F0160B85 for ; Tue, 28 Mar 2017 07:31:44 +0200 (CEST) Received: (qmail 18356 invoked by uid 500); 28 Mar 2017 05:31:43 -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 18347 invoked by uid 99); 28 Mar 2017 05:31:43 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Mar 2017 05:31:43 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 50C2CC0974 for ; Tue, 28 Mar 2017 05:31:43 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id w3bDDs0MTH0Q for ; Tue, 28 Mar 2017 05:31:42 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 558DB5F253 for ; Tue, 28 Mar 2017 05:31:42 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id CF46DE039D for ; Tue, 28 Mar 2017 05:31:41 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 8825724062 for ; Tue, 28 Mar 2017 05:31:41 +0000 (UTC) Date: Tue, 28 Mar 2017 05:31:41 +0000 (UTC) From: "Pengcheng Xiong (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-16310) Get the output operators of Reducesink when vectorization is on MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 28 Mar 2017 05:31:45 -0000 [ https://issues.apache.org/jira/browse/HIVE-16310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15944557#comment-15944557 ] Pengcheng Xiong commented on HIVE-16310: ---------------------------------------- [~ashutoshc], could u take a look? Thanks. > Get the output operators of Reducesink when vectorization is on > --------------------------------------------------------------- > > Key: HIVE-16310 > URL: https://issues.apache.org/jira/browse/HIVE-16310 > Project: Hive > Issue Type: Bug > Reporter: Pengcheng Xiong > Assignee: Pengcheng Xiong > > {code} > set hive.compute.query.using.stats=false; > set hive.mapred.mode=nonstrict; > set hive.explain.user=false; > set hive.optimize.ppd=true; > set hive.ppd.remove.duplicatefilters=true; > set hive.tez.dynamic.partition.pruning=true; > set hive.tez.dynamic.semijoin.reduction=true; > set hive.optimize.metadataonly=false; > set hive.optimize.index.filter=true; > set hive.tez.bigtable.minsize.semijoin.reduction=1; > set hive.tez.min.bloom.filter.entries=1; > set hive.tez.dynamic.semijoin.reduction.threshold=-999999999999; > set hive.auto.convert.join=false; > set hive.vectorized.execution.enabled=true; > CREATE TABLE `table_1`( > `bigint_col_7` bigint, > `decimal2016_col_26` decimal(20,16), > `tinyint_col_3` tinyint, > `decimal2612_col_77` decimal(26,12), > `timestamp_col_9` timestamp); > CREATE TABLE `table_18`( > `tinyint_col_15` tinyint, > `decimal2709_col_9` decimal(27,9), > `tinyint_col_20` tinyint, > `smallint_col_19` smallint, > `decimal1911_col_16` decimal(19,11), > `timestamp_col_18` timestamp); > explain formatted select t2.tinyint_col_20 from table_1 t1 join table_18 t2 on t1.tinyint_col_3 = t2.tinyint_col_20 where t2.tinyint_col_20 > 3 > ; > drop table table_1; > drop table table_18; > {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)