duckdb icon indicating copy to clipboard operation
duckdb copied to clipboard

HTTPFS version mismatch

Open vimota opened this issue 1 year ago • 0 comments

I'm giving this a try with an existing project (trying to see if using bun resolves a memory leak I'm seeing with DuckDB+Nodejs) but I get a problem on loading HTTPFS extension:

Server starting version: 18.10.1.
290 |   {
291 |     const e = duck.duckffi_result_error(r);
292 |
293 |     if (e) {
294 |       const s = new CString(e);
295 |       throw (duck.duckffi_free_result(r), new Error(s));
                                              ^
error: Invalid Input Error: Extension "/Users/vimota/.duckdb/extensions/6b7362d2ca/osx_arm64/httpfs.duckdb_extension" version (v0.7.1-dev284) does not match DuckDB version (v0.0.1-dev0)

vimota avatar Mar 11 '23 08:03 vimota