Skip to content

Commit

Permalink
Remove cache call
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Apr 16, 2024
1 parent f9d2af9 commit 75306a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queries/polars/q17.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def q() -> None:
part_ds.filter(pl.col("p_brand") == var_1)
.filter(pl.col("p_container") == var_2)
.join(line_item_ds, how="left", left_on="p_partkey", right_on="l_partkey")
).cache()
)

q_final = (
res_1.group_by("p_partkey")
Expand Down

0 comments on commit 75306a9

Please sign in to comment.