We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
IcebergTableProvider
Inspired by #650
I want to expose IcebergTableProvider to Datafusion as python binding using Custom Table Provider
Integration with Python might look something like,
from pyiceberg_core import table_provider from datafusion import SessionContext ctx = SessionContext() iceberg_table_provider = table_provider.create_table_provider( metadata_location=metadata_location ) ctx.register_table_provider("test", iceberg_table_provider) table = ctx.table("test") table.show()
The text was updated successfully, but these errors were encountered:
Possibly blocked by apache/datafusion#13851
Sorry, something went wrong.
kevinjqliu
No branches or pull requests
Inspired by #650
I want to expose
IcebergTableProvider
to Datafusion as python binding using Custom Table ProviderIntegration with Python might look something like,
The text was updated successfully, but these errors were encountered: