in common/big_query/schema_provider.py [0:0]
def get_table_metadata(self, table_name: str) -> Dict[str, Any]:
"""
Retrieves the metadata for a specified table.
"""
table_metadata = self.tables.get(table_name)
if table_metadata:
return table_metadata
raise BigQuerySchemaNotFoundError(
f"Schema not found for table {table_name}"
)