Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 10, 2025
1 parent a78492c commit 9137964
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions py-polars/tests/unit/cloud/test_prepare_cloud_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ def test_prepare_cloud_plan(lf: pl.LazyFrame) -> None:
pl.col("b").map_batches(lambda x: sum(x))
),
pl.LazyFrame({"a": [1, 2], "b": [3, 4]}).map_batches(lambda x: x),
pl.LazyFrame({"a": [1, 2], "b": [3, 4]})
.group_by("a")
.map_groups(lambda x: x, schema={"b": pl.Int64}),
pl.LazyFrame({"a": [1, 2], "b": [3, 4]})
.group_by("a")
.agg(pl.col("b").map_batches(lambda x: sum(x))),
pl.scan_parquet(CLOUD_SOURCE).filter(
pl.col("a") < pl.lit(1).map_elements(lambda x: x + 1)
),
Expand Down

0 comments on commit 9137964

Please sign in to comment.