duckdb_azure
duckdb_azure copied to clipboard
Not able to attach to .db file placed over azure blob storage using azure extension
i downloaded latest azure extension code and trying to attach to .db file using duckdb cli and .db file is placed over azure blob storage.
While attaching i am getting below issue -
ATTACH 'az://samplecontainer/sample.db' AS sample_test (READ_ONLY); INTERNAL Error: Attempting to dereference an optional pointer that is not set This error signals an assertion failure within DuckDB. This usually occurs due to unexpected conditions or errors in the program's logic.
To Reproduce
Below are the steps and commands to reproduce -
Run duckdb CLI and run below commands
CREATE SECRET secret ( TYPE AZURE, CONNECTION_STRING '***********' );
Attach .db file using below command - ATTACH 'az://samplecontainer/sample.db' AS sample_test (READ_ONLY);