kosiew commented on issue #15549:
URL: https://github.com/apache/datafusion/issues/15549#issuecomment-2774976608

   @alexwilcoxson-rel 
   
   I could not reproduce this with commit `28451b5` on the `main` branch:
   
   ```
   DataFusion CLI v46.0.1
   > create table u as values({r: 'a', c: 1}), ({r: 'b', c: 2.3});
   0 row(s) fetched.
   Elapsed 0.031 seconds.
   
   > create table t as values({r: 'a', c: 1}), ({r: 'b', c: 2.3});
   0 row(s) fetched.
   Elapsed 0.010 seconds.
   
   > select * from t tee join u you on tee.column1['r'] = you.column1['r'];
   +----------------+----------------+
   | column1        | column1        |
   +----------------+----------------+
   | {r: a, c: 1.0} | {r: a, c: 1.0} |
   | {r: b, c: 2.3} | {r: b, c: 2.3} |
   +----------------+----------------+
   2 row(s) fetched.
   Elapsed 0.021 seconds.
   
   > select * from t join u on t.column1['r'] = u.column1['r'];
   +----------------+----------------+
   | column1        | column1        |
   +----------------+----------------+
   | {r: a, c: 1.0} | {r: a, c: 1.0} |
   | {r: b, c: 2.3} | {r: b, c: 2.3} |
   +----------------+----------------+
   2 row(s) fetched.
   Elapsed 0.012 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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to