Skip to content

Commit

Permalink
Merge branch 'dev' into azure_aql_literal_issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafalz13 authored Mar 27, 2024
2 parents 9e4aae8 + bce1835 commit f497fc3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- Fixed the `if_exists` parameter definition in the `CreateTableFromBlob` task.
- Changed `requirements.txt` to level up version of `dbt-sqlserver` in order to fix bug with `MAXRECURSION` error in dbt_run

### Changed

### Removed
- Removed `dbt-core==1.3.2` from `requirements.txt`

## [0.4.25] - 2024-01-30
### Added
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ aiolimiter==1.0.0
protobuf>=3.19.0, <3.20
avro-python3==1.10.2
pygit2>=1.10.1, <1.11.0
dbt-core==1.3.2
dbt-sqlserver==1.3.1
dbt-sqlserver @ git+https://github.com/djagoda881/[email protected]_option_clause
lumaCLI==0.0.19
Office365-REST-Python-Client==2.4.4
TM1py==1.11.3
Expand Down
4 changes: 2 additions & 2 deletions viadot/flows/adls_to_azure_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ def gen_flow(self) -> Flow:
# data validation function (optional)
if self.validate_df_dict:
validate_df.bind(df=df, tests=self.validate_df_dict, flow=self)
validate_df.set_upstream(lake_to_df_task, flow=self)
df_reorder.set_upstream(validate_df, flow=self)

df_reorder.set_upstream(lake_to_df_task, flow=self)
df_to_csv.set_upstream(dtypes, flow=self)
df_to_csv.set_upstream(df_reorder, flow=self)
create_table_task.set_upstream(df_to_csv, flow=self)
bulk_insert_task.set_upstream(create_table_task, flow=self)

0 comments on commit f497fc3

Please sign in to comment.