pvary commented on code in PR #10207: URL: https://github.com/apache/iceberg/pull/10207#discussion_r1580860665
########## flink/v1.19/flink/src/main/java/org/apache/iceberg/flink/source/ScanContext.java: ########## @@ -130,7 +131,9 @@ private ScanContext( this.watermarkColumn = watermarkColumn; this.watermarkColumnTimeUnit = watermarkColumnTimeUnit; - validate(); + if (!skipValidate) { Review Comment: Went with your suggestion, and removed the generic validation, and called the validation explicitly from the source. -- 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