diff --git a/metaphor/snowflake/profile/extractor.py b/metaphor/snowflake/profile/extractor.py index 5ba1f61d..1591966d 100644 --- a/metaphor/snowflake/profile/extractor.py +++ b/metaphor/snowflake/profile/extractor.py @@ -157,6 +157,7 @@ def _fetch_columns_async( # This could include columns in views or stream tables. for row in cursor: + # See https://docs.snowflake.com/en/sql-reference/sql/show-columns#output ( table_name, table_schema, @@ -168,7 +169,7 @@ def _fetch_columns_async( _, _, table_catalog, - _, + *_, ) = row column_info_map[Table(table_catalog, table_schema, table_name)].append( (column_name, data_type) diff --git a/pyproject.toml b/pyproject.toml index 954a0ccb..41a0d5ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "metaphor-connectors" -version = "0.13.107" +version = "0.13.108" license = "Apache-2.0" description = "A collection of Python-based 'connectors' that extract metadata from various sources to ingest into the Metaphor app." authors = ["Metaphor "]