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

[GitHub] carbondata pull request #2501: [CARBONDATA-2738]Block Preaggregate, Compacti...

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

    https://github.com/apache/carbondata/pull/2501#discussion_r202903870
  
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonAlterTableCompactionCommand.scala ---
    @@ -82,6 +82,12 @@ case class CarbonAlterTableCompactionCommand(
           throw new MalformedCarbonCommandException("Unsupported operation on non transactional table")
         }
     
    +    if (table.getTableInfo.getFactTable.getListOfColumns.asScala
    +      .exists(m => m.getDataType.isComplexType)) {
    +      throw new MalformedCarbonCommandException(
    --- End diff --
    
    throw UnsupportedOperationException


---