Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ingestion/dremio): Fixed lineage view for dremio EE #11990

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -394,10 +394,12 @@ def process_dataset(
):
yield dremio_mcp
# Check if the emitted aspect is SchemaMetadataClass
if isinstance(dremio_mcp.metadata, SchemaMetadataClass):
if isinstance(
dremio_mcp.metadata, MetadataChangeProposalWrapper
) and isinstance(dremio_mcp.metadata.aspect, SchemaMetadataClass):
self.sql_parsing_aggregator.register_schema(
urn=dataset_urn,
schema=dremio_mcp.metadata,
schema=dremio_mcp.metadata.aspect,
)

if dataset_info.dataset_type == DremioDatasetType.VIEW:
Expand Down
Loading
Loading