Skip to content

Commit e15c578

Browse files
committed
u
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 4e42c68 commit e15c578

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

vortex-array/src/arrays/dict/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pub struct DictArray {
124124
dtype: DType,
125125
/// Indicates whether all dictionary values are definitely referenced by at least one code.
126126
/// `true` = all values are referenced (computed during encoding).
127-
/// `false` = unknown/might have unreferenced values (conservative default).
127+
/// `false` = unknown/might have unreferenced values.
128128
all_values_referenced: bool,
129129
}
130130

vortex-layout/src/layouts/dict/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ pub struct DictLayout {
133133
codes: LayoutRef,
134134
/// Indicates whether all dictionary values are definitely referenced by at least one code.
135135
/// `true` = all values are referenced (computed during encoding).
136-
/// `false` = unknown/might have unreferenced values (conservative default).
136+
/// `false` = unknown/might have unreferenced values.
137137
all_values_referenced: bool,
138138
}
139139

vortex-layout/src/layouts/dict/reader.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ impl LayoutReader for DictReader {
201201
let (values, codes) = try_join!(values_eval.map_err(VortexError::from), codes_eval)?;
202202

203203
// Validate that codes are valid for the values
204-
// Preserve all_values_referenced metadata from the layout
205204
let array =
206205
DictArray::try_new_with_metadata(codes, values, all_values_referenced)?.to_array();
207206
expr.evaluate(&array)

0 commit comments

Comments
 (0)