Skip to content

Commit

Permalink
Update BaseDistributedDataScan.java
Browse files Browse the repository at this point in the history
  • Loading branch information
lurnagao-dahua committed Sep 26, 2024
1 parent 10140e9 commit fa8e52a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ private ResidualEvaluator newResidualEvaluator(PartitionSpec spec) {

private <R> Map<Integer, R> specCache(Function<PartitionSpec, R> load) {
Map<Integer, R> cache = Maps.newHashMap();
table().specs().forEach((specId, spec) -> cache.put(specId, load.apply(spec)));
specsById().forEach((specId, spec) -> cache.put(specId, load.apply(spec)));
return cache;
}

Expand Down

0 comments on commit fa8e52a

Please sign in to comment.