haohuaijin commented on issue #8374:
URL: 
https://github.com/apache/arrow-datafusion/issues/8374#issuecomment-1834017145

   > Just to clarify: in my tests this **failed with different column names** 
as well. Just MRE uses auto column names
   
   @DDtKey could you provide some cases? When the column name is different, I 
find it works in `datafusion 33` 06bbe1298fa8aa042b6a6462e55b2890969d884a
   ```
   DataFusion CLI v33.0.0
   ❯ create table u(a text, b int) as values ('Alice', 50), ('Bob', 100);
   0 rows in set. Query took 0.023 seconds.
   
   ❯ create table e(c text, d text) as values ('Alice', 'Finance'), ('Bob', 
'Marketing');
   0 rows in set. Query took 0.000 seconds.
   
   ❯ select u.* from u join e on u.a = e.c order by u.a, e.d;
   +-------+-----+
   | a     | b   |
   +-------+-----+
   | Alice | 50  |
   | Bob   | 100 |
   +-------+-----+
   2 rows in set. Query took 0.021 seconds.
   ```
   
   
   


-- 
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]

Reply via email to