You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);
The text was updated successfully, but these errors were encountered:
hi @Mytherin , i checked again with your commit and it is working with single thread... but when i set max_threads to more than 1 then Database attach is working correctly but in query execution program is crashing with below error -
Error in executing query: IO Error: Corrupt database file: computed checksum 10704450356758579597 does not match stored checksum 8071570260309647359 in block at location 2371584
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);
The text was updated successfully, but these errors were encountered: