-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump python311 exception rename & dbt 14 updates (#64)
* version bump dbt 14 python311 exception rename * moved timestamp to timestamp.sql macros and added test * added tests for query comments * added change materialization type test * poetry updates on deps - dev group removed * env_list format change * add predicates par to get_delete_insert_merge_sql --------- Co-authored-by: Torsten Glunde <torsten@TorstenAir.local> Co-authored-by: ilikutle <ilija.kutle@alligator-company.com>
- Loading branch information
1 parent
34f3d82
commit 2e09e72
Showing
17 changed files
with
565 additions
and
137 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
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,20 @@ | ||
{% macro exasol__current_timestamp() -%} | ||
current_timestamp() | ||
{%- endmacro %} | ||
|
||
{% macro exasol__snapshot_string_as_time(timestamp) -%} | ||
{%- set result = "to_timestamp('" ~ timestamp ~ "')" -%} | ||
{{ return(result) }} | ||
{%- endmacro %} | ||
|
||
{% macro exasol__snapshot_get_time() -%} | ||
to_timestamp({{ current_timestamp() }}) | ||
{%- endmacro %} | ||
|
||
{% macro exasol__current_timestamp_backcompat() %} | ||
current_timestamp() | ||
{% endmacro %} | ||
|
||
{% macro exasol__current_timestamp_in_utc_backcompat() %} | ||
current_timestamp() | ||
{% 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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
name: auxmoney | ||
autocreate: true | ||
image: alligatorcompany/acs-workbench:latest | ||
command: zsh | ||
namespace: dev-torsten | ||
dev: | ||
acsdata: | ||
autocreate: true | ||
image: alligatorcompany/acs-workbench:latest | ||
command: zsh | ||
sync: | ||
- .:/wks | ||
workdir: /wks | ||
|
||
sync: | ||
- .:/wks | ||
workdir: /wks | ||
environment: | ||
- DBT_USER=sys | ||
- DBT_PASS=start123 | ||
- DBT_PROFILES_DIR=. | ||
- EXASOL_SERVICE_HOST=exasol | ||
- EXASOL_SERVICE_PORT=8563 | ||
|
||
environment: | ||
- DBT_USER=sys | ||
- DBT_PASS=start123 | ||
- DBT_PROFILES_DIR=. | ||
- EXASOL_SERVICE_HOST=exasol | ||
- EXASOL_SERVICE_PORT=8563 | ||
|
||
forward: | ||
- 8563:exasol:8563 | ||
- 8000:dvb:8000 | ||
- 8001:dvb:3000 | ||
forward: | ||
- 8563:exasol:8563 | ||
- 8000:dvb:8000 | ||
- 8001:dvb:3000 |
Oops, something went wrong.