Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1595#discussion_r155458141
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/strategy/CarbonLateDecodeStrategy.scala
---
@@ -413,19 +414,35 @@ private[sql] class CarbonLateDecodeStrategy extends
SparkStrategy {
relation: BaseRelation,
predicates: Seq[Expression]): (Seq[Expression], Seq[Filter]) = {
+ def isComplexAttribute(attribute: Attribute) = attribute.dataType
match {
--- End diff --
should be private
---