comphead opened a new issue, #5186:
URL: https://github.com/apache/arrow-datafusion/issues/5186
**Is your feature request related to a problem or challenge? Please describe
what you are trying to do.**
DiskManager will fail if spill directory doesn't exist
```
#[test]
fn test_disk_manager_create_spill_folder() {
let config =
DiskManagerConfig::new_specified(vec!["DOESNT_EXIST".into()]);
DiskManager::try_new(config)
.unwrap()
.create_tmp_file("Testing")
.unwrap();
}
```
**Describe the solution you'd like**
Create automatically spill folder if doesn't exist
**Describe alternatives you've considered**
Not doing this
**Additional context**
None
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]