-
Notifications
You must be signed in to change notification settings - Fork 154
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
Patch for dbt show
for a model with a struct
column containing a json
datatype
#974
Conversation
@cla-bot check |
The cla-bot has been summoned, and re-checked this pull request! |
@@ -0,0 +1,6 @@ | |||
kind: Fixes | |||
body: Patch for json inline --show |
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.
Looks like you generated a second changelog instead of updating this one, you can just delete this file
Co-authored-by: colin-rogers-dbt <[email protected]>
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.
I left one minor comment that doesn't affect functionality. I'm providing an approval so that you can merge following that update.
dbt show
for a model with a json column
…winkler/json-show-patch
dbt show
for a model with a json columndbt show
for a model with a struct
column containing a json
datatype
@@ -0,0 +1,6 @@ | |||
kind: Fixes | |||
body: Patch for json inline --show |
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.
body: Patch for json inline --show | |
body: Patch for `dbt show` for `json` within a `struct` |
…`json` datatype (#974) * patch for --show with json * update matts handle in changelog * Update dbt/adapters/bigquery/connections.py Co-authored-by: colin-rogers-dbt <[email protected]> * add json struct functional test * remove old change log * add comment to test --------- Co-authored-by: colin-rogers-dbt <[email protected]> Co-authored-by: Colin <[email protected]> (cherry picked from commit 6a3f458)
…`json` datatype (#974) (#976) * patch for --show with json * update matts handle in changelog * Update dbt/adapters/bigquery/connections.py Co-authored-by: colin-rogers-dbt <[email protected]> * add json struct functional test * remove old change log * add comment to test --------- Co-authored-by: colin-rogers-dbt <[email protected]> Co-authored-by: Colin <[email protected]> (cherry picked from commit 6a3f458) Co-authored-by: matt-winkler <[email protected]>
…`json` datatype (#974) * patch for --show with json * update matts handle in changelog * Update dbt/adapters/bigquery/connections.py Co-authored-by: colin-rogers-dbt <[email protected]> * add json struct functional test * remove old change log * add comment to test --------- Co-authored-by: colin-rogers-dbt <[email protected]> Co-authored-by: Colin <[email protected]> (cherry picked from commit 6a3f458)
…`json` datatype (#974) (#978) * patch for --show with json * update matts handle in changelog * Update dbt/adapters/bigquery/connections.py Co-authored-by: colin-rogers-dbt <[email protected]> * add json struct functional test * remove old change log * add comment to test --------- Co-authored-by: colin-rogers-dbt <[email protected]> Co-authored-by: Colin <[email protected]> (cherry picked from commit 6a3f458) Co-authored-by: matt-winkler <[email protected]>
resolves #972
Problem
dbt show --select
currently breaks when attempted on ajson
field because of this bigquery python client issueSolution
Patch as suggested by @dbeatty10
Checklist