Github user sandeep-katta commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2366#discussion_r196654884
--- Diff:
integration/spark-common/src/main/scala/org/apache/spark/util/CarbonReflectionUtils.scala
---
@@ -65,7 +66,7 @@ object CarbonReflectionUtils {
className,
tableIdentifier,
tableAlias)._1.asInstanceOf[UnresolvedRelation]
- } else if (SPARK_VERSION.startsWith("2.2")) {
+ } else if (SPARK_VERSION.startsWith("2.2") ||
SPARK_VERSION.startsWith("2.3")) {
--- End diff --
Fixed,added the Utility method for spark version comparison in
SparkUtil.scala
---