We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7017027 commit 03cea8bCopy full SHA for 03cea8b
vortex-layout/src/layouts/dict/reader.rs
@@ -8,7 +8,7 @@ use std::sync::{Arc, OnceLock};
8
use futures::future::BoxFuture;
9
use futures::{FutureExt, TryFutureExt, try_join};
10
use vortex_array::compute::{MinMaxResult, min_max, take};
11
-use vortex_array::{ArrayRef, MaskFuture};
+use vortex_array::{Array, ArrayRef, IntoArray, MaskFuture};
12
use vortex_dict::DictArray;
13
use vortex_dtype::{DType, FieldMask};
14
use vortex_error::{VortexError, VortexExpect, VortexResult};
@@ -76,6 +76,7 @@ impl DictReader {
76
)
77
.vortex_expect("must construct dict values array evaluation")
78
.map_err(Arc::new)
79
+ .map_ok(|arr| arr.to_canonical().into_array())
80
.boxed()
81
.shared()
82
})
0 commit comments