Skip to content

Commit

Permalink
Jpmmcneill/spark type boolean (#471)
Browse files Browse the repository at this point in the history
* implement type boolean test spark

* changie result
  • Loading branch information
jpmmcneill authored Sep 22, 2022
1 parent e07b8a2 commit 8c921d0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .changes/unreleased/Features-20220920-000814.yaml
Original file line number Diff line number Diff line change
@@ -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"
5 changes: 5 additions & 0 deletions tests/functional/adapter/utils/test_data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -65,3 +66,7 @@ class TestTypeString(BaseTypeString):

class TestTypeTimestamp(BaseTypeTimestamp):
pass


class TestTypeBoolean(BaseTypeBoolean):
pass

0 comments on commit 8c921d0

Please sign in to comment.