We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ed684 commit 64c0e47Copy full SHA for 64c0e47
1 file changed
datafusion/physical-plan/src/coalesce/mod.rs
@@ -59,9 +59,6 @@ impl LimitedBatchCoalescer {
59
target_batch_size: usize,
60
fetch: Option<usize>,
61
) -> 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);
65
Self {
66
inner: BatchCoalescer::new(schema, target_batch_size)
67
.with_biggest_coalesce_batch_size(Some(target_batch_size / 2)),
0 commit comments