jonathanc-n commented on code in PR #1448: URL: https://github.com/apache/iceberg-rust/pull/1448#discussion_r2151101515
########## crates/iceberg/src/transaction/append.rs: ########## @@ -87,76 +169,45 @@ impl FastAppendAction { /// Specifically, schema compatibility checks and support for adding to partitioned tables /// have not yet been implemented. #[allow(dead_code)] - async fn add_parquet_files(mut self, file_path: Vec<String>) -> Result<Transaction> { - if !self - .snapshot_produce_action - .tx - .current_table - .metadata() - .default_spec - .is_unpartitioned() - { + async fn add_parquet_files(self, table: &Table, file_path: Vec<String>) -> Result<Self> { Review Comment: It was originally implemented as such to allow the user to be able to call this function directly. Are you saying that we should batch data files then call `add_data_files` later all in one go? -- 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