duckdb / duckdb-wasm

WebAssembly version of DuckDB
https://shell.duckdb.org
MIT License
1.02k stars 111 forks source link

Add `allowUnsignedExtensions` to DuckDB Config #1651

Closed Y-- closed 4 months ago

Y-- commented 4 months ago

Right now one need two different builds if they want to switch between a version of DuckDB-WASM that accept unsigned extensions and one that doesn't. This is not consistent with other platforms (such as CLI which can be started with -unsigned or Python which can open a DB with allow_unsigned_extensions configuration)

This PR allows to open the DB with this flag as well.

Mytherin commented 4 months ago

Thanks!