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 e25e75f commit 1869573Copy full SHA for 1869573
vortex-layout/src/layouts/dict/reader.rs
@@ -177,10 +177,12 @@ impl LayoutReader for DictReader {
177
if values.all_valid()
178
&& let Some(MinMaxResult { min, max }) = min_max(&values)?
179
{
180
+ #[expect(clippy::bool_comparison, reason = "easy to follow")]
181
if max.as_bool().value().vortex_expect("non null") == false {
182
// All values are false
183
return Ok(Mask::AllFalse(mask.len()));
184
}
185
186
if min.as_bool().value().vortex_expect("not null") == true {
187
// All values are true, but we still need to respect codes validity
188
return Ok(mask.bitand(&codes.validity_mask()));
0 commit comments