sdd commented on code in PR #512: URL: https://github.com/apache/iceberg-rust/pull/512#discussion_r1712254637
########## crates/iceberg/src/table.rs: ########## @@ -16,28 +16,156 @@ // under the License. //! Table API for Apache Iceberg -use typed_builder::TypedBuilder; + +use std::sync::Arc; use crate::arrow::ArrowReaderBuilder; +use crate::io::object_cache::ObjectCache; use crate::io::FileIO; use crate::scan::TableScanBuilder; use crate::spec::{TableMetadata, TableMetadataRef}; -use crate::{Result, TableIdent}; +use crate::{Error, ErrorKind, Result, TableIdent}; + +/// Builder to create table scan. +pub struct TableBuilder { Review Comment: Unfortunately I could not get it to work with `typed_builder`, despite spending a long time trying. I could not configure `typed_builder` to be able to initialise the object cache with either an optional capacity, default capacity or disabled. -- 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