From 2a722f0a9d2a078c49506810029810495fa6c896 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Wed, 11 Dec 2024 22:46:18 -0500 Subject: [PATCH] tweak --- .../src/datahub/ingestion/source/snowflake/snowflake_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3055fbf18e363e..d8c3075bd921b9 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_utils.py +++ b/metadata-ingestion/src/datahub/ingestion/source/snowflake/snowflake_utils.py @@ -216,7 +216,7 @@ def _split_qualified_name(qualified_name: str) -> List[str]: # Second pass - remove outer pairs of quotes. result = [] for part in parts: - if len(part) > 1 and part[0] == '"' and part[-1] == '"': + if len(part) > 2 and part[0] == '"' and part[-1] == '"': part = part[1:-1] result.append("".join(part))