Skip to content

Commit

Permalink
Review change
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayrnt committed Aug 21, 2023
1 parent 9ae91e4 commit 892e28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/bigquery/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ def _partitions_match(table, conf_partition: Optional[PartitionConfig]) -> bool:
table_granularity = table.partitioning_type
conf_table_field = conf_partition.field
return (
table_field.lower() == conf_table_field.lower()
table_field == conf_table_field.lower()
or (conf_partition.time_ingestion_partitioning and table_field is not None)
) and table_granularity.lower() == conf_partition.granularity.lower()
elif conf_partition and table.range_partitioning is not None:
Expand Down

0 comments on commit 892e28f

Please sign in to comment.