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."""