a-agmon commented on code in PR #259: URL: https://github.com/apache/iceberg-rust/pull/259#discussion_r1524304240
########## crates/iceberg/src/table.rs: ########## @@ -63,3 +64,99 @@ impl Table { TableScanBuilder::new(self) } } + +/// `StaticTable` is a read-only table struct that can be created from a metadata file or from `TableMetaData` without a catalog. +/// It can only be used to read metadata and for table scan. +/// # Examples +/// +/// ```rust, no_run +/// # use iceberg::io::FileIO; +/// # use iceberg::table::StaticTable; +/// # use iceberg::TableIdent; +/// # tokio_test::block_on(async { Review Comment: @Xuanwo - Great idea. Thanks. Will remove the dependency -- 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