Activate statistics based row group level pruning - If `None`, defaults to value on `config_options`
(mut self, enable: bool)
| 153 | /// Activate statistics based row group level pruning |
| 154 | /// - If `None`, defaults to value on `config_options` |
| 155 | pub fn with_enable_pruning(mut self, enable: bool) -> Self { |
| 156 | self.options.global.pruning = enable; |
| 157 | self |
| 158 | } |
| 159 | |
| 160 | /// Return `true` if pruning is enabled |
| 161 | pub fn enable_pruning(&self) -> bool { |
no outgoing calls