Skip to content

Commit 9e949d8

Browse files
committed
fix k way merge sort processor
1 parent 25e132d commit 9e949d8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/query/pipeline/transforms/src/processors/transforms/sort/k_way_merge_sort_partition.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,4 +245,8 @@ pub struct SortTaskMeta {
245245
}
246246

247247
#[typetag::serde(name = "sort_task")]
248-
impl BlockMetaInfo for SortTaskMeta {}
248+
impl BlockMetaInfo for SortTaskMeta {
249+
fn clone_self(&self) -> Box<dyn BlockMetaInfo> {
250+
Box::new(*self)
251+
}
252+
}

0 commit comments

Comments
 (0)