-
Notifications
You must be signed in to change notification settings - Fork 179
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
Demonstrate regression in dbt-core due to get_catalog updates (#8856) #816
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the dbt-snowflake contributing guide. |
dev-requirements.txt
Outdated
@@ -1,7 +1,7 @@ | |||
# install latest changes in dbt-core | |||
# TODO: how to automate switching from develop to version branches? | |||
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core | |||
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-tests-adapter&subdirectory=tests/adapter | |||
git+https://github.com/dbt-labs/dbt-core.git@4122f6c308c88be4a24c1ea490802239a4c1abb8#egg=dbt-core&subdirectory=core |
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.
Revert the version of dbt-core
to immediately prior to this PR: dbt-labs/dbt-core#8856.
Compare the CI checks here to a run against |
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-tests-adapter&subdirectory=tests/adapter | ||
# git+https://github.com/dbt-labs/dbt-core.git@4122f6c308c88be4a24c1ea490802239a4c1abb8#egg=dbt-core&subdirectory=core | ||
# git+https://github.com/dbt-labs/dbt-core.git@4122f6c308c88be4a24c1ea490802239a4c1abb8#egg=dbt-tests-adapter&subdirectory=tests/adapter | ||
git+https://github.com/dbt-labs/dbt-core.git@paw/filtered-catalog-casefold#egg=dbt-core&subdirectory=core |
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.
Point to the proposed fix on dbt-core
to demonstrate it is working.
The issue has been resolved, this is no longer needed. |
Problem
A recent commit to
dbt-core
is causing inherited catalog tests to fail ondbt-snowflake
.Solution
This PR does not fix the issue, but demonstrates the root cause.
Checklist