Skip to content

Commit 681ebb8

Browse files
authored
Change Q17 join type from left to inner (#177)
1 parent cd0ca58 commit 681ebb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

queries/polars/q17.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def q(
2525
q1 = (
2626
part.filter(pl.col("p_brand") == var1)
2727
.filter(pl.col("p_container") == var2)
28-
.join(lineitem, how="left", left_on="p_partkey", right_on="l_partkey")
28+
.join(lineitem, how="inner", left_on="p_partkey", right_on="l_partkey")
2929
)
3030

3131
return (

0 commit comments

Comments
 (0)