MCPcopy Create free account
hub / github.com/apache/datafusion / options

Method options

datafusion/execution/src/config.rs:142–144  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 ///

Callers 6

fromMethod · 0.45
config_optionsMethod · 0.45
task_context_extensionsFunction · 0.45

Calls

no outgoing calls