From 97b9ae0ceba43b0d383712e08d16c5a3fa95ec3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20G=C3=B3mez=20Villamor?= Date: Thu, 10 Jul 2025 18:18:36 +0200 Subject: [PATCH] fix(snowflake): resolve table name collision between FileBackedList and StoredProcLineageTracker (#14028) --- .../datahub/ingestion/source/snowflake/stored_proc_lineage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/snowflake/stored_proc_lineage.py b/metadata-ingestion/src/datahub/ingestion/source/snowflake/stored_proc_lineage.py index 90b307c071..664b541187 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/snowflake/stored_proc_lineage.py +++ b/metadata-ingestion/src/datahub/ingestion/source/snowflake/stored_proc_lineage.py @@ -65,7 +65,7 @@ class StoredProcLineageTracker(Closeable): # { root_query_id -> StoredProcExecutionLineage } self._stored_proc_execution_lineage: FileBackedDict[ StoredProcExecutionLineage - ] = FileBackedDict(shared_connection) + ] = FileBackedDict(shared_connection, tablename="stored_proc_lineage") def add_stored_proc_call(self, call: StoredProcCall) -> None: """Add a stored procedure call to track."""