()
| 23 | static RUNTIME: OnceLock<Runtime> = OnceLock::new(); |
| 24 | |
| 25 | fn global_runtime() -> &'static Runtime { |
| 26 | RUNTIME.get_or_init(|| { |
| 27 | Runtime::new() |
| 28 | .expect("failed to build global tokio runtime for paimon datafusion integration") |
| 29 | }) |
| 30 | } |
| 31 | |
| 32 | /// Returns a [`Handle`] to the global Tokio runtime. |
| 33 | /// |
no outgoing calls
no test coverage detected