| 191 | /// [`ConfigOptions`](datafusion_common::config::ConfigOptions) |
| 192 | #[derive(Debug, Clone, PartialEq, PartialOrd, Eq, Hash)] |
| 193 | pub struct SetVariable { |
| 194 | /// The variable name |
| 195 | pub variable: String, |
| 196 | /// The value to set |
| 197 | pub value: String, |
| 198 | } |
| 199 | |
| 200 | /// Reset a configuration variable to its default |
| 201 | #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Hash)] |
no outgoing calls
no test coverage detected
searching dependent graphs…