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
Below is the reference error. Is there any way to read delta table present in ADLS gen2 using duckdb by connecting via SAS token?
`--------------------------------------------------------------------------- InvalidInputException Traceback (most recent call last) Cell In[65], line 1 ----> 1 db.sql(f""" 2 INSTALL delta; LOAD delta; 3 INSTALL azure; LOAD azure; 4 CREATE SECRET azure_secret ( 5 TYPE AZURE, 6 PROVIDER ACCESS_TOKEN, 7 ACCESS_TOKEN '{delta_folder_sas_token}', 8 ACCOUNT_NAME '{storage_account_name}' 9 ); 10 """)
InvalidInputException: Invalid Input Error: Secret provider 'access_token' not found for type 'azure'`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Below is the reference error. Is there any way to read delta table present in ADLS gen2 using duckdb by connecting via SAS token?
`---------------------------------------------------------------------------
InvalidInputException Traceback (most recent call last)
Cell In[65], line 1
----> 1 db.sql(f"""
2 INSTALL delta; LOAD delta;
3 INSTALL azure; LOAD azure;
4 CREATE SECRET azure_secret (
5 TYPE AZURE,
6 PROVIDER ACCESS_TOKEN,
7 ACCESS_TOKEN '{delta_folder_sas_token}',
8 ACCOUNT_NAME '{storage_account_name}'
9 );
10 """)
InvalidInputException: Invalid Input Error: Secret provider 'access_token' not found for type 'azure'`
The text was updated successfully, but these errors were encountered: