thomas-k-cameron commented on issue #6649:
URL:
https://github.com/apache/arrow-datafusion/issues/6649#issuecomment-1587610290
I think I identified the issue.
On `physical-expr`, you can find this.
```rust
Expr::BinaryExpr(BinaryExpr { left, op, right }) => {
// Create physical expressions for left and right operands
let lhs = create_physical_expr(
left,
input_dfschema,
input_schema,
execution_props,
)?;
let rhs = create_physical_expr(
right,
input_dfschema,
input_schema,
execution_props,
)?;
```
It evaluates right/left independently and doesn't mix it up.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]