-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alex Higgs
committed
Jan 26, 2021
1 parent
7ce6cd3
commit 425bc81
Showing
32 changed files
with
762 additions
and
370 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
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
4 changes: 2 additions & 2 deletions
4
docs/materialisations/helpers/replace_placeholder_with_filter.md
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{%- macro get_dbtvault_namespaces() -%} | ||
{%- set override_namespaces = var('adapter_packages', []) -%} | ||
{%- do return(override_namespaces + ['dbtvault']) -%} | ||
{%- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{%- macro is_list(obj, empty_is_false=false) -%} | ||
|
||
{%- if obj is iterable and obj is not string and obj is not mapping -%} | ||
{%- if obj is none and obj is undefined and not obj and empty_is_false -%} | ||
{%- do return(false) -%} | ||
{%- endif -%} | ||
|
||
{%- do return(true) -%} | ||
{%- else -%} | ||
{%- do return(false) -%} | ||
{%- endif -%} | ||
|
||
{%- endmacro -%} | ||
|
||
{%- macro is_nothing(obj) -%} | ||
|
||
{%- if obj is none or obj is undefined or not obj -%} | ||
{%- do return(true) -%} | ||
{%- else -%} | ||
{%- do return(false) -%} | ||
{%- endif -%} | ||
|
||
{%- endmacro -%} | ||
|
||
{%- macro is_something(obj) -%} | ||
|
||
{%- if obj is not none and obj is defined and obj -%} | ||
{%- do return(true) -%} | ||
{%- else -%} | ||
{%- do return(false) -%} | ||
{%- endif -%} | ||
|
||
{%- 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.