|
6 | 6 |
|
7 | 7 | from snuba.clickhouse.columns import ( |
8 | 8 | Array, |
| 9 | + Bool, |
9 | 10 | Column, |
10 | 11 | DateTime, |
11 | 12 | DateTime64, |
@@ -153,6 +154,7 @@ def test_column_parser(self) -> None: |
153 | 154 | {"name": "int_col", "type": "UInt", "args": {"size": 64}}, |
154 | 155 | {"name": "float_col", "type": "Float", "args": {"size": 32}}, |
155 | 156 | {"name": "string_col", "type": "String"}, |
| 157 | + {"name": "bool_col", "type": "Bool"}, |
156 | 158 | {"name": "time_col", "type": "DateTime"}, |
157 | 159 | { |
158 | 160 | "name": "time64_col", |
@@ -209,6 +211,7 @@ def test_column_parser(self) -> None: |
209 | 211 | Column("int_col", UInt(64)), |
210 | 212 | Column("float_col", Float(32)), |
211 | 213 | Column("string_col", String()), |
| 214 | + Column("bool_col", Bool()), |
212 | 215 | Column("time_col", DateTime()), |
213 | 216 | Column("time64_col", DateTime64(3, "America/New_York")), |
214 | 217 | Column("nested_col", Nested([Column("sub_col", UInt(64))])), |
|
0 commit comments