amogh-jahagirdar commented on code in PR #11175: URL: https://github.com/apache/iceberg/pull/11175#discussion_r1769208491
########## core/src/main/java/org/apache/iceberg/deletes/Deletes.java: ########## @@ -192,29 +185,6 @@ public static PositionDeleteIndex toPositionIndex(CloseableIterable<Long> posDel } } - public static <T> CloseableIterable<T> streamingFilter( - CloseableIterable<T> rows, - Function<T, Long> rowToPosition, - CloseableIterable<Long> posDeletes) { - return streamingFilter(rows, rowToPosition, posDeletes, new DeleteCounter()); - } - - public static <T> CloseableIterable<T> streamingFilter( - CloseableIterable<T> rows, - Function<T, Long> rowToPosition, - CloseableIterable<Long> posDeletes, - DeleteCounter counter) { - return new PositionStreamDeleteFilter<>(rows, rowToPosition, posDeletes, counter); - } - - public static <T> CloseableIterable<T> streamingMarker( - CloseableIterable<T> rows, - Function<T, Long> rowToPosition, - CloseableIterable<Long> posDeletes, - Consumer<T> markDeleted) { - return new PositionStreamDeleteMarker<>(rows, rowToPosition, posDeletes, markDeleted); - } - Review Comment: I'm all for removing unneccessary APIs but since they're public I think this should go through a deprecation process. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org