Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I would like to be able to execute the following SQL queries with datafusion:
SELECT t1.id, t2.user FROM t1 JOIN t2 ON t1.id = t2.id
Describe the solution you'd like
Datafusion should be able to execute this query without error.