alamb commented on code in PR #19731:
URL: https://github.com/apache/datafusion/pull/19731#discussion_r2683075653
##########
datafusion/sqllogictest/test_files/join.slt.part:
##########
@@ -973,19 +973,19 @@ ON e.emp_id = d.emp_id
WHERE ((dept_name != 'Engineering' AND e.name = 'Alice') OR (name != 'Alice'
AND e.name = 'Carol'));
----
logical_plan
-01)Filter: d.dept_name != Utf8View("Engineering") AND e.name =
Utf8View("Alice") OR e.name != Utf8View("Alice") AND e.name = Utf8View("Carol")
Review Comment:
is this right? It looks like it has rewritten
```sql
((dept_name != 'Engineering' AND e.name = 'Alice') OR (name != 'Alice' AND
e.name = 'Carol'));
```
to
```sql
((dept_name != 'Engineering' AND e.name = 'Alice') OR (e.name = 'Carol'));
```
But `name` and `e.name` are different 🤔
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]