forked from openedx/aspects-dbt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openedx#142 from saraburns1/upgrade_reqs
chore: Update package versions
- Loading branch information
Showing
8 changed files
with
19 additions
and
21 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 |
---|---|---|
@@ -1,15 +1,13 @@ | ||
-- Return an ON CLUSTER clause if we are running dbt against a cluster | ||
{% macro on_cluster() -%} | ||
{%- if env_var("CLICKHOUSE_CLUSTER_NAME", "") != "" -%} | ||
ON CLUSTER "{{ env_var("CLICKHOUSE_CLUSTER_NAME") }}" | ||
{%- endif -%} | ||
{on CLUSTER "{{ env_var(" CLICKHOUSE_CLUSTER_NAME ") }}"} | ||
{%- endif -%} | ||
{%- endmacro %} | ||
|
||
-- Return a version of the given table engine suitable for use on ClickHouse clusters | ||
{% macro get_engine(engine) -%} | ||
{%- if env_var("CLICKHOUSE_CLUSTER_NAME", "") != "" -%} | ||
{{ "Replicated" + engine }} | ||
{% else %} | ||
{{ engine }} | ||
{%- endif -%} | ||
{%- if env_var("CLICKHOUSE_CLUSTER_NAME", "") != "" -%} {{ "Replicated" + engine }} | ||
{% else %} {{ engine }} | ||
{%- 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 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
packages: | ||
- package: dbt-labs/codegen | ||
version: 0.12.1 | ||
version: 0.13.1 | ||
- package: dbt-labs/dbt_utils | ||
version: 1.1.1 | ||
sha1_hash: d974113b0f072cce35300077208f38581075ab40 | ||
version: 1.3.0 | ||
sha1_hash: 9c459bb513316be11ab55af0e5113f17444d082e |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
packages: | ||
- package: dbt-labs/codegen | ||
version: 0.12.1 | ||
version: 0.13.1 | ||
- package: dbt-labs/dbt_utils | ||
version: 1.1.1 | ||
version: 1.3.0 |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
dbt-clickhouse==1.8.1 | ||
dbt-clickhouse==1.8.7 | ||
dbt-core~=1.8.0 | ||
shandy-sqlfmt[jinjafmt]==0.21.2 | ||
shandy-sqlfmt[jinjafmt]==0.26.0 | ||
dbt-coverage | ||
clickhouse-cityhash |