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
I'm doing a query with aliases, and when trying to execute it, it gives back a SchemaError saying FieldNotFound, however that error also contains a list of valid fields, and the field it's saying isn't found, is listed in there.
The error (formatted):
I'm digging what deeper and it seems to be caused by the capitalization inside of "linkedTwintag", as putting some dbg! statements everywhere, I see that at some point it compares
Describe the bug
I'm doing a query with aliases, and when trying to execute it, it gives back a
SchemaError
sayingFieldNotFound
, however that error also contains a list of valid fields, and the field it's saying isn't found, is listed in there.The error (formatted):
As you can see, the field that is not found is the last one in the
valid_fields
list.To Reproduce
Create two mysql tables, and use the following crate to pull them in: https://github.com/splitgraph/seafowl/tree/main/datafusion_remote_tables.
Execute the following (or similar query):
Expected behavior
I get back a normal resultbatch.
Additional context
I've not used datafusion a lot, so I'm not 100% sure whether its a bug in the crate for pulling in mysql tables, or if its a bug in datafusion itself.
The text was updated successfully, but these errors were encountered: