-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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(ingest/bigquery): fix extracting comments from complex types #8950
Fix(ingest/bigquery): fix extracting comments from complex types #8950
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested with table having a complex type with uppercase leaf node and able to reproduce the issue.
If the root node of complex type is also in uppercase, the suggested change is required.
Otherwise looks good.
metadata-ingestion/src/datahub/ingestion/source/bigquery_v2/bigquery.py
Outdated
Show resolved
Hide resolved
…gquery.py add suggestion Co-authored-by: Mayuri Nehate <33225191+mayurinehate@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@maaaikoool can you please fix the lint ? https://github.com/datahub-project/datahub/actions/runs/6640885066/job/18042206118?pr=8950
Closes #8763
Fixes a conditional to extract the field description when the field is part of a record.
SchemaField
s are lower case, whileBigQueryColumn
s have the original column name.Checklist