Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement test_changing_relation_types test #143

Merged
merged 2 commits into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- [#64](https://github.com/dremio/dbt-dremio/issues/64) Add BaseArrayTests and throw exceptions for unsupported Array Macros.
- [#117](https://github.com/dremio/dbt-dremio/issues/117) Add support for Query Comment Tests and Python 3.11
- [#117](https://github.com/dremio/dbt-dremio/issues/117) Replace deprecated dbt-core exceptions
- [#117](https://github.com/dremio/dbt-dremio/issues/117) Add support for changing relation type test

## Dependency

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from dbt.tests.adapter.relations.test_changing_relation_type import (
BaseChangeRelationTypeValidator,
)
from tests.fixtures.profiles import unique_schema, dbt_profile_data


class TestChangeRelationTypesDremio(BaseChangeRelationTypeValidator):
pass