alamb commented on issue #9254:
URL: https://github.com/apache/datafusion/issues/9254#issuecomment-3746122903

   Works as of DatFusion 52
   
   ```sql
   > create table t1 as values ({foo: 'bar'});
   0 row(s) fetched.
   Elapsed 0.035 seconds.
   
   > create table t2 as values ({foo: 'bar'});
   0 row(s) fetched.
   Elapsed 0.001 seconds.
   
   > select * from t1 JOIN t2 ON (t1.column1 = t2.column1);
   +------------+------------+
   | column1    | column1    |
   +------------+------------+
   | {foo: bar} | {foo: bar} |
   +------------+------------+
   1 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: [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]

Reply via email to