We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f77b07c commit 58060fdCopy full SHA for 58060fd
1 file changed
datafusion/execution/src/spill_file.rs
@@ -66,6 +66,8 @@ pub trait SpillWriter: Send {
66
}
67
68
/// Factory for creating spill files.
69
-pub trait TempFileFactory: Send + Sync {
+pub trait TempFileFactory:
70
+ Send + Sync + std::panic::UnwindSafe + std::panic::RefUnwindSafe
71
+{
72
fn create_temp_file(&self, description: &str) -> Result<Arc<dyn SpillFile>>;
73
0 commit comments