Skip to content

Commit

Permalink
fix(duckdb): install icu
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Jan 7, 2025
1 parent 64dc642 commit 0476743
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/duckdb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ impl Client {
let connection = Connection::open_in_memory()?;
connection.execute("INSTALL spatial", [])?;
connection.execute("LOAD spatial", [])?;
connection.execute("INSTALL icu", [])?;
connection.execute("LOAD icu", [])?;
Ok(Client { connection })
}

Expand Down

0 comments on commit 0476743

Please sign in to comment.