This is an automated email from the ASF dual-hosted git repository.
comphead pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new e2b7919e28 Improve performance sort TPCH q3 with Utf8Vew (
Sort-preserving merging on a single Utf8View ) (#15447)
e2b7919e28 is described below
commit e2b7919e28c56e618231c4b4489d452ee1ef5a8c
Author: Qi Zhu <[email protected]>
AuthorDate: Sun Mar 30 03:39:26 2025 +0800
Improve performance sort TPCH q3 with Utf8Vew ( Sort-preserving merging on
a single Utf8View ) (#15447)
---
datafusion/physical-plan/src/sorts/cursor.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datafusion/physical-plan/src/sorts/cursor.rs
b/datafusion/physical-plan/src/sorts/cursor.rs
index 3d3bd81948..efb9c0a47b 100644
--- a/datafusion/physical-plan/src/sorts/cursor.rs
+++ b/datafusion/physical-plan/src/sorts/cursor.rs
@@ -284,7 +284,7 @@ impl<T: ByteArrayType> CursorArray for GenericByteArray<T> {
impl CursorArray for StringViewArray {
type Values = StringViewArray;
fn values(&self) -> Self {
- self.clone()
+ self.gc()
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]