Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2366#discussion_r196310531
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/util/CarbonReflectionUtils.scala
---
@@ -247,6 +252,32 @@ object CarbonReflectionUtils {
isFormatted
}
+
+ def getRowDataSourceScanExecObj(relation: LogicalRelation,
--- End diff --
please make the indentation like:
```
def getRowDataSourceScanExecObj(
relation: LogicalRelation,
output: Seq[Attribute],
pushedFilters: Seq[Filter]): RowDataSourceScanExec = {
```
---