Skip to content

Commit e2b7919

Browse files
authored
Improve performance sort TPCH q3 with Utf8Vew ( Sort-preserving merging on a single Utf8View ) (#15447)
1 parent 7e0738a commit e2b7919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-plan/src/sorts/cursor.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ impl<T: ByteArrayType> CursorArray for GenericByteArray<T> {
284284
impl CursorArray for StringViewArray {
285285
type Values = StringViewArray;
286286
fn values(&self) -> Self {
287-
self.clone()
287+
self.gc()
288288
}
289289
}
290290

0 commit comments

Comments
 (0)