Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1833#discussion_r162545921
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonLoadDataCommand.scala
---
@@ -243,7 +243,7 @@ case class CarbonLoadDataCommand(
} catch {
case CausedBy(ex: NoRetryException) =>
// update the load entry in table status file for changing the
status to marked for delete
- if (isUpdateTableStatusRequired) {
+ if (isUpdateTableStatusRequired && !table.isHivePartitionTable) {
--- End diff --
ok
---