Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1583#discussion_r155267373
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/hive/CarbonMetaStore.scala
---
@@ -142,6 +142,10 @@ trait CarbonMetaStore {
def getTableFromMetadataCache(database: String, tableName: String):
Option[CarbonTable]
+ def getTableInfo(absoluteTableIdentifier: AbsoluteTableIdentifier)
--- End diff --
This idea is good, but I think you do not need to put this in
CarbonMetaStore trait, right? Reading schema from tablePath can be an utility.
---