Skip to content

Commit 5792fea

Browse files
committed
Avoid forced null bitmap in subpartition range reorder
1 parent 1714083 commit 5792fea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/physical-plan/src/aggregates/partition_runs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ fn reorder_array_by_source_runs(
273273
num_rows: usize,
274274
) -> ArrayRef {
275275
let array_data = array.to_data();
276-
let mut mutable = MutableArrayData::new(vec![&array_data], true, num_rows);
276+
let mut mutable = MutableArrayData::new(vec![&array_data], false, num_rows);
277277
for run in source_runs {
278278
mutable.extend(0, run.start, run.start + run.len);
279279
}

0 commit comments

Comments
 (0)