-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
What happens?
It appears that the substrait DuckDB extension is missing from the community repository as well as the nightly. I've received a 404 on DuckDB versions 1.3.0 and 1.4.3 in Python and Rust.
duckdb.duckdb.HTTPException: HTTP Error: Failed to download extension "substrait" at URL "http://community-extensions.duckdb.org/v1.3.0/osx_arm64/substrait.duckdb_extension.gz" (HTTP 404)
To Reproduce
python
import duckdb
con = duckdb.connect()
con.install_extension("substrait", repository = "community")
con.load_extension("substrait")
OR
rust
use duckdb::Connection;
fn main() -> Result<()> {
let conn = Connection::open_in_memory().expect("Can't open database");
conn.execute_batch("INSTALL substrait FROM community;\
").expect("Can't load substrait");
Ok(())
}
OS:
macOS
Substrait-Extension Version:
1.2.2?
DuckDB Version:
1.3.0, 1.4.3
DuckDB Client:
Python, Rust
Have you tried this on the latest master branch?
- I have
Have you tried the steps to reproduce? Do they include all relevant data and configuration? Does the issue you report still appear there?
- I have
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels