-
Notifications
You must be signed in to change notification settings - Fork 59
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 the renamed relations code #723
Conversation
3da474c
to
91ec795
Compare
1fee3c2
to
9b0f759
Compare
dev-requirements.txt
Outdated
@@ -1,6 +1,6 @@ | |||
# install latest changes in dbt-core + dbt-postgres | |||
git+https://github.com/dbt-labs/dbt-adapters.git | |||
git+https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-tests-adapter | |||
git+https://github.com/dbt-labs/dbt-adapters.git@ADAP-108/fix_renamed_relations_for_1.8 |
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.
Adding a blocking review to make sure we don't accidentally merge this.
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-1.7.latest 1.7.latest
# Navigate to the new working tree
cd .worktrees/backport-1.7.latest
# Create a new branch
git switch --create backport-723-to-1.7.latest
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 c99c73bd0386e2641c825b8e36c5bc0229cd3258
# Push it to GitHub
git push --set-upstream origin backport-723-to-1.7.latest
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-1.7.latest Then, create a pull request where the |
* Add test * Add FrozenSet to imports * removed extraneous semicolons * update alter table to alter view for rename --------- Co-authored-by: Mila Page <[email protected]> Co-authored-by: Mike Alfare <[email protected]> Co-authored-by: Mike Alfare <[email protected]> (cherry picked from commit c99c73b)
* Fix the renamed relations code (#723) * Add test * Add FrozenSet to imports * removed extraneous semicolons * update alter table to alter view for rename --------- Co-authored-by: Mila Page <[email protected]> Co-authored-by: Mike Alfare <[email protected]> Co-authored-by: Mike Alfare <[email protected]> (cherry picked from commit c99c73b) * fix import for de-coupling work --------- Co-authored-by: Mila Page <[email protected]>
resolves #722
Add a test after changing frozenset instantiation in Relation.
Checklist