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 D3CD7200CE9 for ; Sat, 5 Aug 2017 05:39:46 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D249716E01D; Sat, 5 Aug 2017 03:39:46 +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 1682E16E01A for ; Sat, 5 Aug 2017 05:39:45 +0200 (CEST) Received: (qmail 54851 invoked by uid 500); 5 Aug 2017 03:39:45 -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 54837 invoked by uid 99); 5 Aug 2017 03:39:45 -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; Sat, 05 Aug 2017 03:39:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 90CE9F3246; Sat, 5 Aug 2017 03:39:43 +0000 (UTC) From: xuchuanyin To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1213: [CARBONDATA-1342] Fixed bugs for spark conf p... Content-Type: text/plain Message-Id: <20170805033944.90CE9F3246@git1-us-west.apache.org> Date: Sat, 5 Aug 2017 03:39:43 +0000 (UTC) archived-at: Sat, 05 Aug 2017 03:39:47 -0000 Github user xuchuanyin commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1213#discussion_r131513710 --- Diff: core/src/main/java/org/apache/carbondata/core/metadata/AbsoluteTableIdentifier.java --- @@ -99,8 +98,9 @@ public static AbsoluteTableIdentifier fromTablePath(String tablePath) { } public String getTablePath() { - return getStorePath() + File.separator + getCarbonTableIdentifier().getDatabaseName() + - File.separator + getCarbonTableIdentifier().getTableName(); + return getStorePath() + CarbonCommonConstants.FILE_SEPARATOR + getCarbonTableIdentifier() --- End diff -- why need to change this? In another modification in this PR, you still use `File.separator` in `renameBadRecord`. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---