Upgrade to polars 0.43 (#14148)

Upgrades the polars plugin to polars version 0.43
This commit is contained in:
Jack Wright
2024-10-23 10:14:24 -07:00
committed by GitHub
parent e7c4597ad0
commit ae54d05930
59 changed files with 530 additions and 398 deletions

View File

@ -42,7 +42,10 @@ impl PluginCommand for CacheGet {
polars store-ls | get key | first | polars store-get $in"#,
result: Some(
NuDataFrame::try_from_series_vec(
vec![Series::new("a", &[1_i64, 3]), Series::new("b", &[2_i64, 4])],
vec![
Series::new("a".into(), &[1_i64, 3]),
Series::new("b".into(), &[2_i64, 4]),
],
Span::test_data(),
)
.expect("could not create dataframe")