From d4232dc140798594fa63d36b16687da6c38d3892 Mon Sep 17 00:00:00 2001 From: Ravjot Brar <83892020+ravjotbrar@users.noreply.github.com> Date: Wed, 1 Mar 2023 22:52:58 +0000 Subject: [PATCH] implement test_changing_relation_types test (#143) ### Summary implement test_changing_relation_types test ### Description No modifications (other than the object_storage stuff) required for the test to work. ### Test Results Ran all functional tests -> Passed ### Changelog - [x] Added a summary of what this PR accomplishes to CHANGELOG.md ### Related Issue https://github.com/dremio/dbt-dremio/issues/117 --- CHANGELOG.md | 1 + .../adapter/relation/test_changing_relation_type.py | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 tests/functional/adapter/relation/test_changing_relation_type.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 6435556..0587ba3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/tests/functional/adapter/relation/test_changing_relation_type.py b/tests/functional/adapter/relation/test_changing_relation_type.py new file mode 100644 index 0000000..ca00b13 --- /dev/null +++ b/tests/functional/adapter/relation/test_changing_relation_type.py @@ -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