-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
get_catalog_for_single_relation
macro (#1064)
* Allow enabling/disabling stats collection on catalog table using env var * Implement get_relation_metadata macro * Discard changes to dbt/include/snowflake/macros/catalog.sql * Import artifacts from dbt_common * fix dbt_common import * Use get_relation_metadata from dbt-common * Update Fixes-20240516-224134.yaml * use snowflakerelation * add broken test * wip * add test for get_catalog_for_single_relation * wip * hardcode macro name * fix docs_generate test * address pr comments * update changie, add type sigs * Use enum values for comparison * remove mv * Discard changes to dev-requirements.txt * Discard changes to setup.py * Bump pins on dbt-common and dbt-adapters --------- Co-authored-by: Colin Rogers <111200756+colin-rogers-dbt@users.noreply.github.com> Co-authored-by: Mike Alfare <13974384+mikealfare@users.noreply.github.com>
- Loading branch information
1 parent
e5b28d6
commit d0a259f
Showing
7 changed files
with
277 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Fixes | ||
body: Get catalog metadata for a single relation in the most optimized way using the get_catalog_for_single_relation macro and capability | ||
time: 2024-05-16T22:41:34.256095+01:00 | ||
custom: | ||
Author: aranke | ||
Issue: "1048" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,3 +94,4 @@ venv/ | |
|
||
# vscode | ||
.vscode/ | ||
.venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters