Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Jan 30, 2025
1 parent f57b73a commit 45961ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py-polars/tests/unit/operations/test_inequality_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,8 @@ def test_join_on_strings() -> None:
q = df.join_where(df, pl.col("a").ge(pl.col("a_right")))

assert "NESTED LOOP JOIN" in q.explain()
assert q.collect().to_dict(as_series=False) == {
# Note: Output is flaky without sort when POLARS_MAX_THREADS=1
assert q.collect().sort(pl.all()).to_dict(as_series=False) == {
"a": ["a", "b", "b", "c", "c", "c"],
"b": ["b", "b", "b", "b", "b", "b"],
"a_right": ["a", "a", "b", "a", "b", "c"],
Expand Down

0 comments on commit 45961ec

Please sign in to comment.