Skip to content

Commit

Permalink
[BUGFIX] 0.18.x Ignore unsupported INTERVAL type as part of CDM (#10414)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kilo59 authored Sep 17, 2024
1 parent e7d650d commit 4545dfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _get_columns_to_exclude(self, table_column_types: Metric) -> List[str]:
Excludes columns that are unsupported or missing type metadata
"""
columns_to_skip: List[str] = []
UNSUPPORTED_COLUMN_TYPES = ["TIME"]
UNSUPPORTED_COLUMN_TYPES = ["TIME", "INTERVAL"]
for column_type in table_column_types.value:
if not column_type.get("type"):
columns_to_skip.append(column_type["name"])
Expand Down

0 comments on commit 4545dfc

Please sign in to comment.