xxchan commented on code in PR #822: URL: https://github.com/apache/iceberg-rust/pull/822#discussion_r1890237532
########## crates/iceberg/src/scan.rs: ########## @@ -981,13 +981,14 @@ mod tests { use crate::table::Table; use crate::TableIdent; - struct TableTestFixture { + pub struct TableTestFixture { table_location: String, - table: Table, + pub table: Table, Review Comment: Make this `pub` so that we can share it in the `metadata_scan` test. We can move it to other places like `test_utils`, but I want to avoid unnecessary changes in the PR. -- 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