JingsongLi commented on code in PR #7409:
URL: https://github.com/apache/paimon/pull/7409#discussion_r2924167671
##########
paimon-core/src/main/java/org/apache/paimon/append/AppendCompactTask.java:
##########
@@ -49,6 +50,7 @@ public class AppendCompactTask {
public AppendCompactTask(BinaryRow partition, List<DataFileMeta> files) {
Preconditions.checkArgument(files != null);
+ files.sort(Comparator.comparingLong(DataFileMeta::minSequenceNumber));
Review Comment:
Should do this sort in Data Evolution class.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]