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 AF470200D37 for ; Thu, 9 Nov 2017 17:00:33 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id ADDAB160BEF; Thu, 9 Nov 2017 16:00:33 +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 EB7DF1609E5 for ; Thu, 9 Nov 2017 17:00:32 +0100 (CET) Received: (qmail 79470 invoked by uid 500); 9 Nov 2017 16:00:32 -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 79461 invoked by uid 99); 9 Nov 2017 16:00:32 -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, 09 Nov 2017 16:00:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0EA87DFBCA; Thu, 9 Nov 2017 16:00:32 +0000 (UTC) From: ravipesala To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1418: [CARBONDATA-1573] [Integration] Support Datab... Content-Type: text/plain Message-Id: <20171109160032.0EA87DFBCA@git1-us-west.apache.org> Date: Thu, 9 Nov 2017 16:00:32 +0000 (UTC) archived-at: Thu, 09 Nov 2017 16:00:33 -0000 Github user ravipesala commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1418#discussion_r150004203 --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/hive/CarbonFileMetastore.scala --- @@ -399,16 +396,31 @@ class CarbonFileMetastore extends CarbonMetaStore { FileFactory.isFileExist(tablePath, fileType) } catch { case e: Exception => - false + // this is identify the stale tables, table physically present but removed from hive + try { --- End diff -- remove and try whether all tests passes ---