File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ class TestConf(ServiceBackendTest):
9696 check_dtype = False
9797 returned_timestamp_unit = "s"
9898 supports_arrays = False
99- supports_arrays_outside_of_select = supports_arrays
10099 native_bool = True
101100 supports_structs = False
102101 supports_json = False # it does, but we haven't implemented it
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ class TestConf(ServiceBackendTest):
2727 check_dtype = False
2828 check_names = False
2929 supports_arrays = False
30- supports_arrays_outside_of_select = supports_arrays
3130 supports_divide_by_zero = False
3231 returned_timestamp_unit = "us"
3332 supported_to_timestamp_units = {"s" , "ms" , "us" }
Original file line number Diff line number Diff line change 2222
2323class TestConf (BackendTest ):
2424 supports_arrays = True
25- supports_arrays_outside_of_select = False
2625 check_dtype = False
2726 supports_divide_by_zero = True
2827 returned_timestamp_unit = "s"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class TestConf(ServiceBackendTest):
2424 # MSSQL has the same rounding behavior as postgres
2525 check_dtype = False
2626 returned_timestamp_unit = "s"
27- supports_arrays_outside_of_select = supports_arrays = False
27+ supports_arrays = False
2828 supports_structs = False
2929 supports_json = False
3030 rounding_method = "half_to_even"
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class TestConf(ServiceBackendTest):
2424 # mysql has the same rounding behavior as postgres
2525 check_dtype = False
2626 returned_timestamp_unit = "s"
27- supports_arrays = supports_arrays_outside_of_select = False
27+ supports_arrays = False
2828 native_bool = False
2929 supports_structs = False
3030 rounding_method = "half_to_even"
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ class TestConf(ServiceBackendTest):
3636 check_dtype = False
3737 returned_timestamp_unit = "s"
3838 supports_arrays = False
39- supports_arrays_outside_of_select = False
4039 # Automatic mutate so that logical type in ibis returns as bool
4140 # but the backend will still do whatever it's going to do
4241 native_bool = False
Original file line number Diff line number Diff line change 1616
1717class TestConf (BackendTest ):
1818 supports_arrays = False
19- supports_arrays_outside_of_select = supports_arrays
2019 check_dtype = False
2120 returned_timestamp_unit = "s"
2221 supports_structs = False
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ class BackendTest(abc.ABC):
3636 "Check that column name matches when comparing Pandas Series"
3737 supports_arrays : bool = True
3838 "Whether backend supports Arrays / Lists"
39- supports_arrays_outside_of_select : bool = supports_arrays
40- "Whether backend supports Arrays / Lists outside of Select Statements"
4139 supports_divide_by_zero : bool = False
4240 "Whether backend supports division by zero"
4341 returned_timestamp_unit : str = "us"
You can’t perform that action at this time.
0 commit comments