Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Nov 6, 2022
1 parent 00c2dbd commit 55069b2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion polars/polars-lazy/src/physical_plan/streaming/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ fn streamable_join(join_type: &JoinType) -> bool {
}
}

#[cfg(any(feature = "csv-file", feature = "parquet"))]
pub(crate) fn insert_streaming_nodes(
root: Node,
lp_arena: &mut Arena<ALogicalPlan>,
Expand Down
1 change: 0 additions & 1 deletion polars/polars-lazy/src/physical_plan/streaming/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
mod convert;

#[cfg(any(feature = "csv-file", feature = "parquet"))]
pub(crate) use convert::insert_streaming_nodes;
3 changes: 2 additions & 1 deletion py-polars/tests/unit/test_joins.py
Original file line number Diff line number Diff line change
Expand Up @@ -667,5 +667,6 @@ def test_streaming_joins() -> None:
.collect(allow_streaming=True)
)

# we cast to integer because pandas joins creates floats
a = pl.from_pandas(pd_result).with_column(pl.all().cast(int)).sort(["a", "b"])
pl.testing.assert_frame_equal(a, pl_result)
pl.testing.assert_frame_equal(a, pl_result, check_dtype=False)

0 comments on commit 55069b2

Please sign in to comment.