We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9579bf commit bd8faf8Copy full SHA for bd8faf8
1 file changed
datafusion/core/tests/memory_limit/mod.rs
@@ -455,7 +455,9 @@ async fn test_stringview_external_sort() {
455
.with_memory_pool(Arc::new(FairSpillPool::new(60 * 1024 * 1024)));
456
let runtime = builder.build_arc().unwrap();
457
458
- let config = SessionConfig::new().with_sort_spill_reservation_bytes(40 * 1024 * 1024);
+ let config = SessionConfig::new()
459
+ .with_sort_spill_reservation_bytes(40 * 1024 * 1024)
460
+ .with_repartition_file_scans(false);
461
462
let ctx = SessionContext::new_with_config_rt(config, runtime);
463
ctx.register_table("t", Arc::new(table)).unwrap();
0 commit comments