Skip to content

Commit 51d3ac2

Browse files
removed coalesce batches as it is default behaviour
1 parent e31e655 commit 51d3ac2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/query/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ impl Query {
9191
let mut config = SessionConfig::default()
9292
.with_parquet_pruning(true)
9393
.with_prefer_existing_sort(true)
94-
.with_batch_size(1000000)
95-
.with_coalesce_batches(true);
96-
94+
.with_batch_size(1000000);
9795
// For more details refer https://datafusion.apache.org/user-guide/configs.html
9896

9997
// Pushdown filters allows DF to push the filters as far down in the plan as possible

0 commit comments

Comments
 (0)