Skip to content

Commit 700508c

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

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

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

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

0 commit comments

Comments
 (0)