From adc6b90363c8861f10bace8aaae878af4a0f7913 Mon Sep 17 00:00:00 2001 From: Alisa Aylward Date: Mon, 16 Sep 2024 21:19:56 -0400 Subject: [PATCH] fix(ingest/snowflake): Update snowflake_utils.py to account for iceberg tables (#11384) --- .../src/datahub/ingestion/source/snowflake/snowflake_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_utils.py b/metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_utils.py index 0177d59ef6b21..5e79530d2391b 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_utils.py +++ b/metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_utils.py @@ -125,6 +125,7 @@ def is_dataset_pattern_allowed( SnowflakeObjectDomain.EXTERNAL_TABLE, SnowflakeObjectDomain.VIEW, SnowflakeObjectDomain.MATERIALIZED_VIEW, + SnowflakeObjectDomain.ICEBERG_TABLE, ): return False if _is_sys_table(dataset_name):