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
Would the ibis dataset already support polar as a backend?
It does, but:
I'm guessing the read_database would need to be implemented in Ibis.
If a user just wants to use Polars syntax in their nodes, I guess it's a fair ask.
It's a separate question whether Polars is the best way to manipulate data in a database (definite downside is pulling it into memit. For manipulation, rather than pushing down compute), but a user may still want to do it.
Description
It would be great to have Polars implementations of SQLQueryDataset and SQLTableDataset, similar to the Pandas versions: pandas.SQLTableDataset and pandas.SQLQueryDataset.
Context
Sometimes users would like to read / write polars DataFrames directly from SQL databases.
Possible Implementation
The datasets will have similar implementation to Pandas versions, but will use polars built-in functions read_database and write_database.
P.S. I'm happy to work on that☺️
The text was updated successfully, but these errors were encountered: