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 37073200D3C for ; Mon, 30 Oct 2017 11:57:10 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 35AA9160BE4; Mon, 30 Oct 2017 10:57:10 +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 72D631609EF for ; Mon, 30 Oct 2017 11:57:09 +0100 (CET) Received: (qmail 71974 invoked by uid 500); 30 Oct 2017 10:57:08 -0000 Mailing-List: contact issues-help@carbondata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@carbondata.apache.org Delivered-To: mailing list issues@carbondata.apache.org Received: (qmail 71964 invoked by uid 99); 30 Oct 2017 10:57:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Oct 2017 10:57:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 89160DFCE5; Mon, 30 Oct 2017 10:57:08 +0000 (UTC) From: jackylk To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1417: [CARBONDATA-1594] Add precision and scale to ... Content-Type: text/plain Message-Id: <20171030105708.89160DFCE5@git1-us-west.apache.org> Date: Mon, 30 Oct 2017 10:57:08 +0000 (UTC) archived-at: Mon, 30 Oct 2017 10:57:10 -0000 Github user jackylk commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1417#discussion_r147670083 --- Diff: core/src/main/java/org/apache/carbondata/core/metadata/schema/table/column/ColumnSchema.java --- @@ -87,13 +88,6 @@ */ private int columnGroupId = -1; - /** - * Used when this column contains decimal data. - */ - private int scale; - - private int precision; --- End diff -- fixed ---