duckdb_azure icon indicating copy to clipboard operation
duckdb_azure copied to clipboard

Segmentation fault when copying to Azure storage

Open daviewales opened this issue 1 year ago • 1 comments

This works:

INSTALL azure;
LOAD azure;

CREATE SECRET test (
      TYPE AZURE,
      PROVIDER CREDENTIAL_CHAIN,
      ACCOUNT_NAME 'test'
);

select * from 'az://test/test.csv';

This triggers a segmentation fault (in same session as above):

copy (select 1 as A, 2 as B) to 'az://test/test2.csv';

System Info

OS: Windows 11 and Linux (WSL) Environment: Both PowerShell and WSL

❯ duckdb --version
v0.10.0 20b1486d11

daviewales avatar Feb 19 '24 05:02 daviewales