Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1469#discussion_r153095139
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/hive/CarbonRelation.scala
---
@@ -172,7 +172,13 @@ case class CarbonRelation(
}
// TODO: Use data from the footers.
- override lazy val statistics = Statistics(sizeInBytes = this.sizeInBytes)
+ // TODO For 2.1
+ // override lazy val statistics = Statistics(sizeInBytes =
this.sizeInBytes)
+ // Todo for 2.2
+ // override def computeStats(conf: SQLConf): Statistics =
Statistics(sizeInBytes =
+ // this.sizeInBytes)
+
+ // override lazy val statistics = Statistics(sizeInBytes =
this.sizeInBytes)
--- End diff --
Will resolve it as soon as possible.
---