Skip to content

Commit

Permalink
joinp: update to latest polars upstream join fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Jun 30, 2024
1 parent 6cf70b7 commit 75db3aa
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 30 deletions.
43 changes: 18 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ calamine = { git = "https://github.com/tafia/calamine", rev = "6b41309" }
# use modernized version of local_encoding
local-encoding = { git = "https://github.com/slonopotamus/local-encoding-rs", branch = "travis-madness" }
# use latest upstream version of polars with additional unreleased features/fixes
polars = { git = "https://github.com/pola-rs/polars", rev = "482c400" }
polars = { git = "https://github.com/pola-rs/polars", rev = "59d2529" }


[features]
Expand Down
6 changes: 2 additions & 4 deletions tests/test_joinp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,7 @@ joinp_test!(
let got: String = wrk.output_stderr(&mut cmd);
assert_eq!(
got,
"Polars error: ComputeError(ErrString(\"the join keys did not fulfil m:1 \
validation\"))\n"
"Polars error: ComputeError(ErrString(\"join keys did not fulfill m:1 validation\"))\n"
);
wrk.assert_err(&mut cmd);
}
Expand All @@ -400,8 +399,7 @@ joinp_test!(
let got: String = wrk.output_stderr(&mut cmd);
assert_eq!(
got,
"Polars error: ComputeError(ErrString(\"the join keys did not fulfil 1:1 \
validation\"))\n"
"Polars error: ComputeError(ErrString(\"join keys did not fulfill 1:1 validation\"))\n"
);
wrk.assert_err(&mut cmd);
}
Expand Down

0 comments on commit 75db3aa

Please sign in to comment.