File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
vortex-array/src/arrays/dict
vortex-layout/src/layouts/dict Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments