Specify whether the optimizer should skip rules that produce errors, or fail the query
(mut self, b: bool)
| 209 | /// Specify whether the optimizer should skip rules that produce |
| 210 | /// errors, or fail the query |
| 211 | pub fn with_skip_failing_rules(mut self, b: bool) -> Self { |
| 212 | Arc::make_mut(&mut self.options).optimizer.skip_failed_rules = b; |
| 213 | self |
| 214 | } |
| 215 | |
| 216 | /// Specify how many times to attempt to optimize the plan |
| 217 | pub fn with_max_passes(mut self, v: u8) -> Self { |
no outgoing calls