qiuchenjian commented on a change in pull request #3167: [CARBONDATA-3334] fixed multiple segment file issue for partition
URL:
https://github.com/apache/carbondata/pull/3167#discussion_r269916020
##########
File path: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonLoadDataCommand.scala
##########
@@ -869,7 +869,9 @@ case class CarbonLoadDataCommand(
}
}
try {
- carbonLoadModel.setFactTimeStamp(System.currentTimeMillis())
+ if (carbonLoadModel.getFactTimeStamp == 0L) {
+ carbonLoadModel.setFactTimeStamp(System.currentTimeMillis())
Review comment:
Can this operator be merged with line 806 ?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services