Return a handle to the configuration options. Can be used to read the current configuration. ``` use datafusion_execution::config::SessionConfig; let config = SessionConfig::new(); assert!(config.options().execution.batch_size > 0); ```
(&self)
| 140 | /// assert!(config.options().execution.batch_size > 0); |
| 141 | /// ``` |
| 142 | pub fn options(&self) -> &Arc<ConfigOptions> { |
| 143 | &self.options |
| 144 | } |
| 145 | |
| 146 | /// Return a mutable handle to the configuration options. |
| 147 | /// |
no outgoing calls