Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Wigley committed Jan 13, 2021
1 parent c14e6f4 commit f9e1f4d
Show file tree
Hide file tree
Showing 2 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
@@ -1,5 +1,8 @@
## dbt 0.19.0 (Release TBD)

### Fixes
- Fix regression with defining exposures and other resources with the same name ([#2969](https:/fishtown-analytics/dbt/issues/2969), [#3009](https:/fishtown-analytics/dbt/pull/3009))

### Under the hood
- Rewrite macro for snapshot_merge_sql to make compatible with other SQL dialects ([#3003](https:/fishtown-analytics/dbt/pull/3003)
- Rewrite logic in `snapshot_check_strategy()` to make compatible with other SQL dialects ([#3000](https:/fishtown-analytics/dbt/pull/3000), [#3001](https:/fishtown-analytics/dbt/pull/3001))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ def models(self):

@use_profile("postgres")
def test_postgres_duplicate_exposure(self):
# message = "dbt found two resources with the name"
message = "dbt found two resources with the name"
try:
self.run_dbt(["compile"])
self.assertTrue(False, "dbt did not throw for duplicate exposures")
except CompilationException as e:
pass
# self.assertTrue(message in str(
# e), "dbt did not throw the correct error message")
self.assertTrue(message in str(
e), "dbt did not throw the correct error message")

0 comments on commit f9e1f4d

Please sign in to comment.