You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When fully qualified projects are present in the project clause dask-sql errors out. Currently it seems the qualifier is being ignored. Since no qualifier is present and join queries that might have the same column name, dask-sql is unable to determine which schema to pull the reference from and throws an error.
Describe the solution you'd like
Properly handle fully qualified projections in the select clause and do not throw an exception.
Describe alternatives you've considered
None
Additional context
Example minimum reproducer query.
select d1.week
from date_dim d1
join date_dim d2
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When fully qualified projects are present in the project clause dask-sql errors out. Currently it seems the qualifier is being ignored. Since no qualifier is present and join queries that might have the same column name, dask-sql is unable to determine which schema to pull the reference from and throws an error.
Describe the solution you'd like
Properly handle fully qualified projections in the select clause and do not throw an exception.
Describe alternatives you've considered
None
Additional context
Example minimum reproducer query.
The text was updated successfully, but these errors were encountered: