Fokko commented on code in PR #7109: URL: https://github.com/apache/iceberg/pull/7109#discussion_r1141491830
########## flink/v1.16/flink/src/main/java/org/apache/iceberg/flink/source/FlinkSource.java: ########## @@ -291,7 +294,25 @@ public DataStream<RowData> build() { if (env.getMaxParallelism() > 0) { parallelism = Math.min(parallelism, env.getMaxParallelism()); } - return env.createInput(format, typeInfo).setParallelism(parallelism); + + DataStreamSource<RowData> source = + env.createInput(format, typeInfo).setParallelism(parallelism); + + // Apply row filtering if required + if (!context.filters().isEmpty()) { Review Comment: Good catch, added the check -- 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