(&self, config: &ConfigOptions)
| 2302 | /// A new `TableOptions` instance with updated settings from the session config. |
| 2303 | #[must_use = "this method returns a new instance"] |
| 2304 | pub fn combine_with_session_config(&self, config: &ConfigOptions) -> Self { |
| 2305 | let mut clone = self.clone(); |
| 2306 | clone.parquet.global = config.execution.parquet.clone(); |
| 2307 | clone |
| 2308 | } |
| 2309 | |
| 2310 | /// Sets the file format for the table. |
| 2311 | /// |
no test coverage detected