Get the left side of the binary expression
(&self)
| 109 | |
| 110 | /// Get the left side of the binary expression |
| 111 | pub fn left(&self) -> &Arc<dyn PhysicalExpr> { |
| 112 | &self.left |
| 113 | } |
| 114 | |
| 115 | /// Get the right side of the binary expression |
| 116 | pub fn right(&self) -> &Arc<dyn PhysicalExpr> { |
no outgoing calls