Returns true if evaluation could introduce an error on non-error inputs.
(&self)
| 1698 | |
| 1699 | /// Returns true if evaluation could introduce an error on non-error inputs. |
| 1700 | pub fn could_error(&self) -> bool { |
| 1701 | self.mfp.predicates.iter().any(|(_pos, e)| e.could_error()) |
| 1702 | || self.mfp.expressions.iter().any(|e| e.could_error()) |
| 1703 | } |
| 1704 | } |
| 1705 | |
| 1706 | impl<E: OptimizableExpr> std::ops::Deref for SafeMfpPlan<E> { |