helgikrs commented on issue #9211:
URL: 
https://github.com/apache/arrow-datafusion/issues/9211#issuecomment-1940923301

   Here's a simpler repro
   
   ```sql
   DataFusion CLI v35.0.0
   ❯ select a.a, b.a from (select 1 as a) a cross join (select 2 as a) b;
   +---+---+
   | a | a |
   +---+---+
   | 1 | 2 |
   +---+---+
   1 row in set. Query took 0.000 seconds.
   
   ❯ select b.a, a.a from (select 1 as a) a cross join (select 2 as a) b;
   +---+---+
   | a | a |
   +---+---+
   | 1 | 2 |
   +---+---+
   1 row in set. Query took 0.001 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