Closed Dtenwolde closed 5 months ago
The extension is successfully deployed, however there is an issue with the new footer introduced by https://github.com/duckdb/duckdb/pull/11515 making the extensions not loadable from stock DuckDB. DuckDB devs are aware of the issue, but a workaround for now is to install the extension:
set custom_extension_repository = 'http://duckpgq.s3.eu-north-1.amazonaws.com';
force install 'duckpgq';
Navigate to the folder where DuckDB extensions are stored (by default ~/.duckdb/extensions/v0.10.2/<os_architecture>/
)
Then truncate the last 256 bytes of the duckpgq.duckdb_extension file: truncate -s -256 duckpgq.duckdb_extension
The extension is now loadable
load 'duckpgq';
Leaving this issue open for now until this loading issue has been fixed
Fixed as of https://github.com/cwida/duckpgq-extension/commit/d88b7f93093bb310e34e18971a59e58df45e2530
Extensions can now be loaded in DuckDB v0.10.2
See #108 for instructions