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
I was following the documentation here, trying to read a table from a catalog:
from deltalake import DeltaTable from deltalake import DataCatalog database_name = "simple_database" table_name = "simple_table" data_catalog = DataCatalog.AWS dt = DeltaTable.from_data_catalog(data_catalog=data_catalog, database_name=database_name, table_name=table_name)
But I am getting the errror: AttributeError: type object 'deltalake._internal.RawDeltaTable' has no attribute 'get_table_uri_from_data_catalog'
AttributeError: type object 'deltalake._internal.RawDeltaTable' has no attribute 'get_table_uri_from_data_catalog'
Is this a bug or is the documentation outdated?
The text was updated successfully, but these errors were encountered:
@flaviokr this code is removed on the rust side, but the references in Python were never removed. We might reintroduce it at some point in the future
Sorry, something went wrong.
No branches or pull requests
I was following the documentation here, trying to read a table from a catalog:
But I am getting the errror:
AttributeError: type object 'deltalake._internal.RawDeltaTable' has no attribute 'get_table_uri_from_data_catalog'
Is this a bug or is the documentation outdated?
The text was updated successfully, but these errors were encountered: