From issues-return-32400-archive-asf-public=cust-asf.ponee.io@carbondata.apache.org Thu Jan 25 07:58:13 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 536DF180651 for ; Thu, 25 Jan 2018 07:58:13 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 43267160C3D; Thu, 25 Jan 2018 06:58:13 +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 80AFB160C13 for ; Thu, 25 Jan 2018 07:58:12 +0100 (CET) Received: (qmail 74555 invoked by uid 500); 25 Jan 2018 06:58:11 -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 74546 invoked by uid 99); 25 Jan 2018 06:58:11 -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; Thu, 25 Jan 2018 06:58:11 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EC46EDFD81; Thu, 25 Jan 2018 06:58:10 +0000 (UTC) From: ravipesala To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1781: [CARBONDATA-2012] Add support to load pre-agg... Content-Type: text/plain Message-Id: <20180125065810.EC46EDFD81@git1-us-west.apache.org> Date: Thu, 25 Jan 2018 06:58:10 +0000 (UTC) Github user ravipesala commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1781#discussion_r163762604 --- Diff: core/src/main/java/org/apache/carbondata/core/util/path/CarbonTablePath.java --- @@ -252,6 +252,10 @@ public String getTableStatusFilePath() { return getMetaDataDir() + File.separator + TABLE_STATUS_FILE; } + public String getTableStatusFilePath(String uuid) { --- End diff -- change name to `getTableStatusFilePathWithUUID` ---