Skip to content

Commit

Permalink
Update dask_queries.py
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl authored Apr 18, 2024
1 parent 3f30448 commit e39cba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tpch/dask_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ def query_16(dataset_path, fs, scale):
complaint_suppkeys = supplier[supplier.is_complaint].s_suppkey.repartition(
npartitions=1
)
partsupp = partsupp[partsupp.ps_suplkey.isin(complaint_suppkeys)]
partsupp = partsupp[partsupp.ps_suppkey.isin(complaint_suppkeys)]

table = partsupp.merge(part, left_on="ps_partkey", right_on="p_partkey")
table = table[
Expand Down

0 comments on commit e39cba6

Please sign in to comment.