-
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
Implement get_catalog_for_single_relation
macro
#1064
Conversation
Current
|
Nice to see that the I think that means |
Tests are currently failing because we haven't merged in dbt-labs/dbt-adapters#231 yet. |
@aranke You can update this line in dev requirements to run full dbt-snowflake CI with your proposed
|
get_relation_metadata
macro get_catalog_for_single_relation
macro
dev-requirements.txt
Outdated
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-common.git | ||
git+https://github.com/dbt-labs/dbt-adapters.git@get_relation_metadata |
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.
Reminder to revert prior to merging.
setup.py
Outdated
@@ -57,8 +57,8 @@ def _plugin_version() -> str: | |||
packages=find_namespace_packages(include=["dbt", "dbt.*"]), | |||
include_package_data=True, | |||
install_requires=[ | |||
"dbt-common>=1.0.4,<2.0", | |||
"dbt-adapters>=1.1.1,<2.0", | |||
# "dbt-common>=1.2.0,<2.0", |
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.
Reminder to revert prior to merging. Also, we need a new lower bound on dbt-adapters
and dbt-common
for this new feature.
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 only noticed the MV thing, otherwise it looks good.
get_catalog_for_single_relation
macro get_catalog_for_single_relation
macro
Problem
We need to implement the
get_catalog_for_single_relation
macro andGetCatalogForSingleRelation
capability for Snowflake.Solution
GetCatalogForSingleRelation
capability toFull
get_catalog_for_single_relation
macro usingshow objects
Checklist