Skip to content

Commit

Permalink
rebase master
Browse files Browse the repository at this point in the history
  • Loading branch information
liming30 committed Nov 13, 2023
1 parent 983173d commit 0a01527
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;

/** Assigner to perform dynamic partition pruning by given {@link DynamicFilteringData}. */
Expand Down Expand Up @@ -83,6 +84,11 @@ public Collection<FileStoreSourceSplit> remainingSplits() {
.collect(Collectors.toList());
}

@Override
public Optional<Long> getNextSnapshotId(int subtask) {
return innerAssigner.getNextSnapshotId(subtask);
}

private boolean filter(FileStoreSourceSplit sourceSplit) {
DataSplit dataSplit = (DataSplit) sourceSplit.split();
BinaryRow partition = dataSplit.partition();
Expand Down

0 comments on commit 0a01527

Please sign in to comment.