Skip to content

Commit

Permalink
downgrade polars again, due to tarpaulin issue
Browse files Browse the repository at this point in the history
  • Loading branch information
samansmink committed Oct 7, 2024
1 parent 1a96802 commit ae3c1d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ memchr = "2.3"
num = { version = "0.4", default-features = false }
num-integer = "0.1.46"
pkg-config = "0.3.24"
polars = "0.43.1"
polars-core = "0.43.1"
polars = "0.35.4"
polars-core = "0.35.4"
pretty_assertions = "1.4.0"
prettyplease = "0.2.20"
proc-macro2 = "1.0.56"
Expand Down
2 changes: 1 addition & 1 deletion crates/duckdb/src/raw_statement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl RawStatement {

let arrow2_field =
arrow2::ffi::import_field_from_c(&ffi_arrow2_schema).expect("Failed to import arrow2 Field from C");
let import_arrow2_array = arrow2::ffi::import_array_from_c(ffi_arrow2_array, arrow2_field.dtype);
let import_arrow2_array = arrow2::ffi::import_array_from_c(ffi_arrow2_array, arrow2_field.data_type);

if let Err(err) = import_arrow2_array {
// When array is empty, import_array_from_c returns error with message
Expand Down

0 comments on commit ae3c1d3

Please sign in to comment.