Skip to content

Commit

Permalink
add type boolean (#190)
Browse files Browse the repository at this point in the history
* add type boolean

* changie result
  • Loading branch information
jpmmcneill authored Sep 22, 2022
1 parent 897dcc7 commit c2c09c7
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-20220919-235003.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
kind: Features
body: add type_boolean as data type macro
time: 2022-09-19T23:50:03.959291+01:00
custom:
Author: jpmmcneill
Issue: "189"
PR: "190"
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 @@ -5,6 +5,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 All @@ -29,3 +30,7 @@ class TestTypeString(BaseTypeString):

class TestTypeTimestamp(BaseTypeTimestamp):
pass


class TestTypeBoolean(BaseTypeBoolean):
pass

0 comments on commit c2c09c7

Please sign in to comment.