From 5bc036fde3bd94ca09763bed75f6b875cd6bc3f9 Mon Sep 17 00:00:00 2001 From: Adam Gutglick Date: Mon, 21 Oct 2024 19:15:01 +0100 Subject: [PATCH] . --- vortex-array/src/typed.rs | 1 + vortex-array/src/view.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/vortex-array/src/typed.rs b/vortex-array/src/typed.rs index c60ad2338a..4b9594f8b0 100644 --- a/vortex-array/src/typed.rs +++ b/vortex-array/src/typed.rs @@ -7,6 +7,7 @@ use vortex_error::{vortex_bail, vortex_panic, VortexError, VortexResult}; use crate::stats::StatsSet; use crate::{Array, ArrayData, ArrayDef, IntoArray, ToArray, TryDeserializeArrayMetadata}; +/// Container for an array with all the associated implementation type information (encoding reference and ID, actual array type, metadata type). #[derive(Debug, Clone)] pub struct TypedArray { array: Array, diff --git a/vortex-array/src/view.rs b/vortex-array/src/view.rs index 55c47b53fb..055502e87d 100644 --- a/vortex-array/src/view.rs +++ b/vortex-array/src/view.rs @@ -172,7 +172,7 @@ impl ArrayView { } #[derive(Default, Debug)] -pub struct ChildrenCollector { +struct ChildrenCollector { children: Vec, }