duckdb_azure icon indicating copy to clipboard operation
duckdb_azure copied to clipboard

Not able to attach to .db file placed over azure blob storage using azure extension

Open rupeshtej opened this issue 6 months ago • 2 comments

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);

rupeshtej avatar Aug 05 '24 09:08 rupeshtej