| 57 | /// Binary expression |
| 58 | #[derive(Debug, Clone, Eq)] |
| 59 | pub struct BinaryExpr { |
| 60 | left: Arc<dyn PhysicalExpr>, |
| 61 | op: Operator, |
| 62 | right: Arc<dyn PhysicalExpr>, |
| 63 | /// Specifies whether an error is returned on overflow or not |
| 64 | fail_on_overflow: bool, |
| 65 | } |
| 66 | |
| 67 | // Manually derive PartialEq and Hash to work around https://github.com/rust-lang/rust/issues/78808 |
| 68 | impl PartialEq for BinaryExpr { |
no outgoing calls
searching dependent graphs…