Skip to content

Commit

Permalink
Fix selecting a filter that might only match values that are <= 0 whi…
Browse files Browse the repository at this point in the history
…ch would break the join (#10204)

Signed-off-by: Navin Kumar <navink@nvidia.com>
  • Loading branch information
NVnavkumar authored Jan 17, 2024
1 parent 6419da6 commit 28ac3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/src/main/python/dpp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def fn(spark):
df.write.format(table_format) \
.mode("overwrite") \
.saveAsTable(table_name)
return df.select('filter').first()[0]
return df.select('filter').where("value > 0").first()[0]

return with_cpu_session(fn)

Expand Down

0 comments on commit 28ac3d3

Please sign in to comment.