Plan the binary operation between two expressions, returns original BinaryExpr if not possible
(
&self,
expr: RawBinaryExpr,
_schema: &DFSchema,
)
| 153 | /// Plan the binary operation between two expressions, returns original |
| 154 | /// BinaryExpr if not possible |
| 155 | fn plan_binary_op( |
| 156 | &self, |
| 157 | expr: RawBinaryExpr, |
| 158 | _schema: &DFSchema, |
| 159 | ) -> Result<PlannerResult<RawBinaryExpr>> { |
| 160 | Ok(PlannerResult::Original(expr)) |
| 161 | } |
| 162 | |
| 163 | /// Plan the field access expression, such as `foo.bar` |
| 164 | /// |
no outgoing calls
no test coverage detected