Skip to content

Commit afeae55

Browse files
committed
factor in expensive dtypes
Signed-off-by: Alexander Droste <[email protected]>
1 parent a46436c commit afeae55

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ impl LayoutReader for FlatReader {
165165
};
166166
mask.density() < threshold
167167
}
168+
DType::Binary(_)
169+
| DType::List(_, _)
170+
| DType::FixedSizeList(_, _, _)
171+
| DType::Struct(_, _)
172+
| DType::Extension(_) => true,
168173
_ => mask.density() < FILTER_OF_FILTER_THRESHOLD,
169174
};
170175

0 commit comments

Comments
 (0)