This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 208da03979 mark OnCloseRowGroup Send (#4893)
208da03979 is described below
commit 208da03979b2903c3182c20ef382b2895756380a
Author: Devin D'Angelo <[email protected]>
AuthorDate: Thu Oct 5 06:20:17 2023 -0400
mark OnCloseRowGroup Send (#4893)
---
parquet/src/file/writer.rs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/parquet/src/file/writer.rs b/parquet/src/file/writer.rs
index af25cc9689..d723158de9 100644
--- a/parquet/src/file/writer.rs
+++ b/parquet/src/file/writer.rs
@@ -115,7 +115,8 @@ pub type OnCloseRowGroup<'a> = Box<
Vec<Option<ColumnIndex>>,
Vec<Option<OffsetIndex>>,
) -> Result<()>
- + 'a,
+ + 'a
+ + Send,
>;
// ----------------------------------------------------------------------