From 90d69a5cc97e7c0e0f3582492338b7497753a465 Mon Sep 17 00:00:00 2001 From: Nicholas Gates Date: Fri, 12 Apr 2024 14:58:58 -0400 Subject: [PATCH] Clean up statistics --- vortex-array2/src/typed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vortex-array2/src/typed.rs b/vortex-array2/src/typed.rs index 0349b9c729..6555c7fc59 100644 --- a/vortex-array2/src/typed.rs +++ b/vortex-array2/src/typed.rs @@ -155,6 +155,6 @@ impl IntoArrayData for TypedArray<'_, D> { impl ToArrayData for TypedArray<'_, D> { fn to_array_data(&self) -> ArrayData { - self.array().to_array_data() + self.clone().into_array_data() } }