Skip to content

Commit

Permalink
missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
MDobransky committed Aug 26, 2024
1 parent a0d5a02 commit 5401307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rialto/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def check_dates_have_partition(self, table: Table, dates: List[date]) -> List[bo
:param dates: list of dates to check
:return: list of bool
"""
if utils.table_exists(table.get_table_path()):
if utils.table_exists(self.spark, table.get_table_path()):
partitions = utils.get_partitions(self.reader, table)
return [(date in partitions) for date in dates]
else:
Expand Down

0 comments on commit 5401307

Please sign in to comment.