liurenjie1024 commented on code in PR #40: URL: https://github.com/apache/iceberg-rust/pull/40#discussion_r1308139355
########## crates/iceberg/src/lib.rs: ########## @@ -18,6 +18,7 @@ //! Native Rust implementation of Apache Iceberg #![deny(missing_docs)] +#![allow(dead_code)] Review Comment: This is to avoid clippy warning. ########## crates/iceberg/src/lib.rs: ########## @@ -27,4 +28,5 @@ pub use error::Error; pub use error::ErrorKind; pub use error::Result; +mod avro; Review Comment: Currently no. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
