Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2109#discussion_r178218263
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonLoadDataCommand.scala
---
@@ -149,7 +143,16 @@ case class CarbonLoadDataCommand(
val LOGGER: LogService =
LogServiceFactory.getLogService(this.getClass.getCanonicalName)
val carbonProperty: CarbonProperties = CarbonProperties.getInstance()
carbonProperty.addProperty("zookeeper.enable.lock", "false")
-
+ currPartitions = if (table.isHivePartitionTable) {
--- End diff --
This is a metastore call, not supposed keep under processData
---