@@ -72,7 +72,6 @@ def all_types_query() -> str:
7272 "CAST('2019-07-31 01:01:01.1234' AS TIMESTAMP_EXT(4)) as \" datetime64\" , "
7373 "CAST('1111-01-05 17:04:42.123456' as timestampntz) as timestampntz, "
7474 "'1111-01-05 17:04:42.123456'::timestamptz as timestamptz,"
75- 'true as "bool",'
7675 "[1,2,3,4] as \" array\" , cast('1231232.123459999990457054844258706536' as "
7776 'decimal(38,30)) as "decimal", '
7877 "cast(null as int) as nullable"
@@ -100,7 +99,6 @@ def all_types_query_description() -> List[Column]:
10099 Column ("datetime64" , DATETIME64 (4 ), None , None , None , None , None ),
101100 Column ("timestampntz" , datetime , None , None , None , None , None ),
102101 Column ("timestamptz" , datetime , None , None , None , None , None ),
103- Column ("bool" , int , None , None , None , None , None ),
104102 Column ("array" , ARRAY (int ), None , None , None , None , None ),
105103 Column ("decimal" , DECIMAL (38 , 30 ), None , None , None , None , None ),
106104 Column ("nullable" , int , None , None , None , None , None ),
@@ -138,7 +136,6 @@ def all_types_query_response(timezone_offset_seconds: int) -> List[ColType]:
138136 123456 ,
139137 tzinfo = timezone (timedelta (seconds = timezone_offset_seconds )),
140138 ),
141- 1 ,
142139 [1 , 2 , 3 , 4 ],
143140 Decimal ("1231232.123459999990457054844258706536" ),
144141 None ,
0 commit comments