anoopj opened a new pull request, #3214: URL: https://github.com/apache/iceberg-rust/pull/3214
## What changes are included in this PR? `ManifestFilterVisitor::bytes_to_datum` took the field `Type` by value, so every comparison-leaf call site cloned the field's boxed `Type` to decode a bound and the two in-predicate sites cloned the entire `NestedField`. `bytes_to_datum` only borrows the type to reach its `PrimitiveType`, so take `&Type` and pass `&reference.field().field_type` at the call sites, dropping the per-leaf clones on the manifest-pruning path. ## Are these changes tested? Existing tests -- 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]
