Skip to content

substrait extension missing from community repository #171

@mattcuento

Description

@mattcuento

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions