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 2BE7F200B29 for ; Thu, 16 Jun 2016 00:57:16 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2A730160A57; Wed, 15 Jun 2016 22:57:16 +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 98A73160A4D for ; Thu, 16 Jun 2016 00:57:15 +0200 (CEST) Received: (qmail 58274 invoked by uid 500); 15 Jun 2016 22:57:09 -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 58240 invoked by uid 99); 15 Jun 2016 22:57:09 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jun 2016 22:57:09 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 60E582C033A for ; Wed, 15 Jun 2016 22:57:09 +0000 (UTC) Date: Wed, 15 Jun 2016 22:57:09 +0000 (UTC) From: "Pengcheng Xiong (JIRA)" To: dev@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HIVE-14028) stats is not updated MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Wed, 15 Jun 2016 22:57:16 -0000 Pengcheng Xiong created HIVE-14028: -------------------------------------- Summary: stats is not updated Key: HIVE-14028 URL: https://issues.apache.org/jira/browse/HIVE-14028 Project: Hive Issue Type: Sub-task Reporter: Pengcheng Xiong Assignee: Pengcheng Xiong {code} DROP TABLE users; CREATE TABLE users(key string, state string, country string, country_id int) STORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler' WITH SERDEPROPERTIES ( "hbase.columns.mapping" = "info:state,info:country,info:country_id" ); INSERT OVERWRITE TABLE users SELECT 'user1', 'IA', 'USA', 0 FROM src; desc formatted users; {code} the result is {code} #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: COLUMN_STATS_ACCURATE {\"BASIC_STATS\":\"true\"} numFiles 0 numRows 0 rawDataSize 0 storage_handler org.apache.hadoop.hive.hbase.HBaseStorageHandler totalSize 0 {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)