You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by lionelcao <gi...@git.apache.org> on 2017/12/15 06:30:52 UTC

[GitHub] carbondata pull request #1661: [CARBONDATA-1678] Fixed incorrect partitionCo...

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

    https://github.com/apache/carbondata/pull/1661#discussion_r157131588
  
    --- Diff: integration/spark-common/src/main/scala/org/apache/spark/util/PartitionUtils.scala ---
    @@ -113,7 +113,8 @@ object PartitionUtils {
         }
     
         if (partitionId == 0) {
    -      partitionInfo.addPartition(splitInfo.size)
    +      val addedPartitionList = PartitionUtils.getListInfo(splitInfo.mkString(","))
    --- End diff --
    
    Looks like `add partition` of list partition table can only support string, but not string group. 
    If need to support string group, splitInfo should be List[List[String]] instead of List[String].
    Could you also change other places to support this feature and add test case?


---