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
---