liurenjie1024 commented on code in PR #169: URL: https://github.com/apache/iceberg-rust/pull/169#discussion_r1503555188
########## crates/iceberg/src/expr/mod.rs: ########## @@ -18,12 +18,15 @@ //! This module contains expressions. mod term; + +use std::fmt::{Display, Formatter}; pub use term::*; mod predicate; pub use predicate::*; /// Predicate operators used in expressions. #[allow(missing_docs)] +#[derive(Debug, Clone, Copy)] pub enum PredicateOperator { Review Comment: Good point! -- 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