fix(snowflake): resolve table name collision between FileBackedList and StoredProcLineageTracker (#14028)

This commit is contained in:
Sergio Gómez Villamor 2025-07-10 18:18:36 +02:00 committed by GitHub
parent aa4f8aca3e
commit 97b9ae0ceb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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