-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Databricks tests #218
Databricks tests #218
Conversation
Really appreciate your contribution of these tests. 🙏 I made a few comments but can you also summarize some of the key differences you are seeing with the Databricks engine compared to the PySpark API? From what I can tell it was the following:
Let me know if there is anything else worth noting. In terms of the maps issue, is there a way that we can detect a map and have it return a dict? You can see an example with DuckDB where it checks the value in the response and tries to determine if it is a map and if so converts it to a dict: sqlframe/sqlframe/duckdb/session.py Lines 59 to 69 in ed4c24a
|
Hi, I'll give it a try |
Yeah I think I know why. Since This is a tricky case that is more of an edge case. Want to transform the keys in some other ways that can be measured and do an instance check if it is Databricks and do a special test just for Databricks? Maybe add a character or something. |
Hi, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @zerodarkzone! Feel free to merge if you are ready.
Hi, |
Hi,
I've added tests suport to the databricks backend and while doing it also fixed a couple of problems I've found.