You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by ravipesala <gi...@git.apache.org> on 2018/07/13 17:31:41 UTC

[GitHub] carbondata pull request #2400: [HOTFIX] Removed BatchedDataSourceScanExec cl...

Github user ravipesala commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2400#discussion_r202421814
  
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/execution/strategy/CarbonLateDecodeStrategy.scala ---
    @@ -673,4 +673,26 @@ private[sql] class CarbonLateDecodeStrategy extends SparkStrategy {
         supportCodegen && vectorizedReader.toBoolean &&
         cols.forall(_.dataType.isInstanceOf[AtomicType])
       }
    +
    +  private def createHadoopFSRelation(relation: LogicalRelation) = {
    +    val sparkSession = relation.relation.sqlContext.sparkSession
    +    relation.catalogTable match {
    +      case Some(catalogTable) =>
    +        HadoopFsRelation(new CatalogFileIndex(
    --- End diff --
    
    Ok, moved down.


---