Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update polars-core requirement from 0.35.4 to 0.40.0 #315

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ memchr = "2.3"
num = { version = "0.4", default-features = false }
pkg-config = "0.3.24"
polars = "0.35.4"
polars-core = "0.35.4"
polars-core = "0.40.0"
pretty_assertions = "1.4.0"
proc-macro2 = "1.0.56"
quote = "1.0.21"

Unchanged files with check annotations Beta

let mut stmt = db.prepare("select t from test order by t")?;
let pl = stmt.query_polars([])?;
let df = accumulate_dataframes_vertical_unchecked(pl);

Check failure on line 80 in crates/duckdb/src/polars_dataframe.rs

GitHub Actions / Test x86_64-pc-windows-msvc

type mismatch resolving `<Polars<'_> as IntoIterator>::Item == DataFrame`
assert_eq!(df.height(), 3000);
assert_eq!(df.column("t").unwrap().i32().unwrap().sum().unwrap(), 9000);

Check failure on line 82 in crates/duckdb/src/polars_dataframe.rs

GitHub Actions / Test x86_64-pc-windows-msvc

no method named `sum` found for reference `&polars_core::chunked_array::ChunkedArray<polars_core::datatypes::Int32Type>` in the current scope
Ok(())
}