jonathanc-n commented on code in PR #1034: URL: https://github.com/apache/iceberg-rust/pull/1034#discussion_r1990344431
########## crates/iceberg/src/transaction.rs: ########## @@ -236,57 +240,59 @@ impl<'a> FastAppendAction<'a> { self.add_data_files(data_files)?; - self.apply().await + self.apply(check_duplicate).await } /// Finished building the action and apply it to the transaction. - pub async fn apply(self) -> Result<Transaction<'a>> { + pub async fn apply(self, check_duplicate: bool) -> Result<Transaction<'a>> { Review Comment: @liurenjie1024 Thanks, should be good now 👍 -- 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