duckdb-rs icon indicating copy to clipboard operation
duckdb-rs copied to clipboard

Ergonomic bindings to duckdb for Rust

Results 175 duckdb-rs issues
Sort by recently updated
recently updated
newest added

You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting...

auto-dependencies

You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting...

auto-dependencies

Updates the requirements on [calamine](https://github.com/tafia/calamine) to permit the latest version. Changelog Sourced from calamine's changelog. 0.25.0 (2024-05-25) feat: added is_error and get_error methods to the DataType trait feat: add deserializer...

auto-dependencies

This fixes #157 When copying an arrow array which contains null into duckdb, the value is converted to default value before the fix. The fix loops through the null marks...

This sets the correct nulls for strings, struct, list, array types when copying data from arrow array to duckdb vectors. When inserting nulls to columns with these types, the null...

CI Failure

The cargo docs state that `build.rs` scripts should not write files outside of the `OUT_DIR`. > In general, build scripts should not modify any files outside of OUT_DIR. It may...

Add some initial bindings for the scalar function C API.

Merge Conflict

Building on top of #336, this fixes some vtab types when using the main branch of DuckDB.

I was trying to insert Mysql rows to DuckDB with the code below: ` let mut app = appender(table_name)?; ` ` app.append_row(appender_params_from_iter(row_iter))?; ` The program ran into panic! on Decimal...

## Changes - Support `LargeUTF8` arrow type. - Abstract `string_array_to_vector` to `GenericStringArray`