Skip to content

Commit 1074601

Browse files
restore TakeReduce and TakeExecute
1 parent f1b50d7 commit 1074601

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • vortex-array/src/arrays/listview/compute

vortex-array/src/arrays/listview/compute/take.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const REBUILD_DENSITY_THRESHOLD: f32 = 0.1;
4040
/// The trade-off is that we may keep unreferenced elements in memory, but this is acceptable
4141
/// since we're optimizing for read performance and the data isn't being copied.
4242
///
43-
/// When the selection density drops below [`REBUILD_DENSITY_THRESHOLD`], we return `None` so
43+
/// When the selection density drops below `REBUILD_DENSITY_THRESHOLD`, we return `None` so
4444
/// callers can fall back to [`TakeExecute`], which compacts `elements` via a rebuild. Dense
4545
/// selections keep the cheap metadata-only path.
4646
impl TakeReduce for ListView {

0 commit comments

Comments
 (0)