Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
schrockn committed Mar 12, 2024
1 parent 24a556e commit 905ef8a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ def time_windows(self) -> Sequence[TimeWindow]:
elif isinstance(subset_from_tw, PartitionKeysTimeWindowPartitionsSubset):
return subset_from_tw.included_time_windows
else:
check.failed(f"Unsupported subset value: {self._compatible_subset.subset_value}")
check.failed(
f"Unsupported subset value in generated subset {self._compatible_subset.subset_value} created by keys {tw_partition_keys}"
)
else:
check.failed(f"Unsupported subset value: {self._compatible_subset.subset_value}")

Expand Down Expand Up @@ -479,7 +481,9 @@ def _build_multi_partition_slice(
for tw_pk in multi_dim_info.tw_partition_def.get_partition_keys_in_time_window(
last_tw
)
for secondary_pk in multi_dim_info.secondary_partition_def.get_partition_keys()
for secondary_pk in multi_dim_info.secondary_partition_def.get_partition_keys(
dynamic_partitions_store=self._queryer, current_time=self.effective_dt
)
}
)

Expand Down

0 comments on commit 905ef8a

Please sign in to comment.