This is an automated email from the ASF dual-hosted git repository.

liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git


The following commit(s) were added to refs/heads/main by this push:
     new 97fc01dc feat: Derive PartialEq for FileScanTask (#660)
97fc01dc is described below

commit 97fc01dcfa7305f0fb0dd9024489eb02c2e59454
Author: Xuanwo <[email protected]>
AuthorDate: Sat Oct 12 15:29:34 2024 +0800

    feat: Derive PartialEq for FileScanTask (#660)
    
    Signed-off-by: Xuanwo <[email protected]>
---
 crates/iceberg/src/scan.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/iceberg/src/scan.rs b/crates/iceberg/src/scan.rs
index ef0e5f54..b7fa62d6 100644
--- a/crates/iceberg/src/scan.rs
+++ b/crates/iceberg/src/scan.rs
@@ -878,7 +878,7 @@ impl ExpressionEvaluatorCache {
 }
 
 /// A task to scan part of file.
-#[derive(Debug, Clone, Serialize, Deserialize)]
+#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
 pub struct FileScanTask {
     /// The start offset of the file to scan.
     pub start: u64,

Reply via email to