From 8c921d071e925524c958b2f3fdea1405761c1a97 Mon Sep 17 00:00:00 2001 From: James McNeill <55981540+jpmmcneill@users.noreply.github.com> Date: Thu, 22 Sep 2022 14:16:00 +0100 Subject: [PATCH] Jpmmcneill/spark type boolean (#471) * implement type boolean test spark * changie result --- .changes/unreleased/Features-20220920-000814.yaml | 7 +++++++ tests/functional/adapter/utils/test_data_types.py | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 .changes/unreleased/Features-20220920-000814.yaml diff --git a/.changes/unreleased/Features-20220920-000814.yaml b/.changes/unreleased/Features-20220920-000814.yaml new file mode 100644 index 000000000..96ba63648 --- /dev/null +++ b/.changes/unreleased/Features-20220920-000814.yaml @@ -0,0 +1,7 @@ +kind: Features +body: implement testing for type_boolean in spark +time: 2022-09-20T00:08:14.15447+01:00 +custom: + Author: jpmmcneill + Issue: "470" + PR: "471" diff --git a/tests/functional/adapter/utils/test_data_types.py b/tests/functional/adapter/utils/test_data_types.py index 65a24a3a9..ce6085803 100644 --- a/tests/functional/adapter/utils/test_data_types.py +++ b/tests/functional/adapter/utils/test_data_types.py @@ -9,6 +9,7 @@ from dbt.tests.adapter.utils.data_types.test_type_numeric import BaseTypeNumeric from dbt.tests.adapter.utils.data_types.test_type_string import BaseTypeString from dbt.tests.adapter.utils.data_types.test_type_timestamp import BaseTypeTimestamp +from dbt.tests.adapter.utils.data_types.test_type_boolean import BaseTypeBoolean class TestTypeBigInt(BaseTypeBigInt): @@ -65,3 +66,7 @@ class TestTypeString(BaseTypeString): class TestTypeTimestamp(BaseTypeTimestamp): pass + + +class TestTypeBoolean(BaseTypeBoolean): + pass