Get the right side of the binary expression
(&self)
| 114 | |
| 115 | /// Get the right side of the binary expression |
| 116 | pub fn right(&self) -> &Arc<dyn PhysicalExpr> { |
| 117 | &self.right |
| 118 | } |
| 119 | |
| 120 | /// Get the operator for this binary expression |
| 121 | pub fn op(&self) -> &Operator { |
no outgoing calls