-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move dbt version to DBT_INSTALLED_VERSION global as tuple * Register adapter for dbt version 1.8.0 and later * Add REQUIRE_RESOURCE_NAMES_WITHOUT_SPACES to args * Set context invocation in manifest * Add dbt v1.8.0 to testing
- Loading branch information
1 parent
5a50719
commit b29e7e8
Showing
4 changed files
with
38 additions
and
5 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 |
---|---|---|
|
@@ -136,3 +136,6 @@ src/pytest_dbt_core/_version.py | |
# dbt | ||
.user.yml | ||
dbt_packages/ | ||
|
||
# Editor | ||
.idea/ |
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,7 @@ | ||
{% macro spark__list_relations_without_caching(relation) %} | ||
{% call statement('list_relations_without_caching', fetch_result=True) -%} | ||
show table extended in {{ relation }} like '*' | ||
{% endcall %} | ||
|
||
{% do return(load_result('list_relations_without_caching').table) %} | ||
{% endmacro %} |
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