Skip to content

Commit 3b27c9e

Browse files
authored
feat: add Sync to TransformFunction (apache#638)
Signed-off-by: xxchan <[email protected]>
1 parent 34cb81c commit 3b27c9e

File tree

1 file changed

+1
-1
lines changed
  • crates/iceberg/src/transform

1 file changed

+1
-1
lines changed

crates/iceberg/src/transform/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mod truncate;
2929
mod void;
3030

3131
/// TransformFunction is a trait that defines the interface for all transform functions.
32-
pub trait TransformFunction: Send {
32+
pub trait TransformFunction: Send + Sync {
3333
/// transform will take an input array and transform it into a new array.
3434
/// The implementation of this function will need to check and downcast the input to specific
3535
/// type.

0 commit comments

Comments
 (0)