Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
auden-woolfson committed Jan 7, 2025
1 parent 90dd494 commit e283d1a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -573,10 +573,9 @@ private static ConnectorPageSourceWithRowPositions createBatchOrcPageSource(
isRowPositionList.add(column.isRowPositionColumn());
}

// Skip the time type columns in predicate
// Skip the time type columns in predicate, converted on page source level
ImmutableMap.Builder<IcebergColumnHandle, Domain> predicateExcludeTimeType = ImmutableMap.builder();
effectivePredicate.getDomains().get().forEach((columnHandle, domain) -> {
// skip TimeType
if (!(columnHandle.getType() instanceof TimeType)) {
predicateExcludeTimeType.put(columnHandle, domain);
}
Expand Down

0 comments on commit e283d1a

Please sign in to comment.