Return the [RuntimeEnv] associated with this [TaskContext]
(&self)
| 137 | |
| 138 | /// Return the [RuntimeEnv] associated with this [TaskContext] |
| 139 | pub fn runtime_env(&self) -> Arc<RuntimeEnv> { |
| 140 | Arc::clone(&self.runtime) |
| 141 | } |
| 142 | |
| 143 | pub fn scalar_functions(&self) -> &HashMap<String, Arc<ScalarUDF>> { |
| 144 | &self.scalar_functions |
no outgoing calls