Github user rahulforallp commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2096#discussion_r177720898
--- Diff:
integration/spark-common/src/main/scala/org/apache/carbondata/spark/util/CarbonScalaUtil.scala
---
@@ -340,12 +342,12 @@ object CarbonScalaUtil {
* @return updated partition spec
*/
def updatePartitions(
- partitionSpec: Map[String, String],
- table: CarbonTable): Map[String, String] = {
+ partitionSpec: mutable.LinkedHashMap[String, String],
+ table: CarbonTable): mutable.LinkedHashMap[String, String] = {
--- End diff --
formatting done
---