Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3036#discussion_r244461155
--- Diff:
integration/spark-common/src/main/scala/org/apache/carbondata/spark/PartitionFactory.scala
---
@@ -32,7 +32,7 @@ object PartitionFactory {
case PartitionType.LIST => new ListPartitioner(partitionInfo)
case PartitionType.RANGE => new RangePartitioner(partitionInfo)
case partitionType =>
- throw new CarbonDataLoadingException(s"Unsupport partition type:
$partitionType")
+ throw new CarbonDataLoadingException(s"Unsupported partition type:
$partitionType")
--- End diff --
Can you check it in whole project, there are another two.
---