Skip to content

Commit 64c0e47

Browse files
committed
WIP
1 parent c5ed684 commit 64c0e47

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

  • datafusion/physical-plan/src/coalesce

datafusion/physical-plan/src/coalesce/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ impl LimitedBatchCoalescer {
5959
target_batch_size: usize,
6060
fetch: Option<usize>,
6161
) -> Self {
62-
// Use at least 8 to avoid debug_assert in arrow-select's BatchCoalescer
63-
// where Vec::reserve(n) for small n can allocate more capacity than n
64-
let target_batch_size = target_batch_size.max(8);
6562
Self {
6663
inner: BatchCoalescer::new(schema, target_batch_size)
6764
.with_biggest_coalesce_batch_size(Some(target_batch_size / 2)),

0 commit comments

Comments
 (0)