@@ -755,17 +755,11 @@ def test_isnan_isinf(
755
755
ibis .least (L (10 ), L (1 )),
756
756
1 ,
757
757
id = "least" ,
758
- marks = pytest .mark .notimpl (
759
- ["datafusion" ], raises = com .OperationNotDefinedError
760
- ),
761
758
),
762
759
param (
763
760
ibis .greatest (L (10 ), L (1 )),
764
761
10 ,
765
762
id = "greatest" ,
766
- marks = pytest .mark .notimpl (
767
- ["datafusion" ], raises = com .OperationNotDefinedError
768
- ),
769
763
),
770
764
param (L (5.5 ).round (), 6.0 , id = "round" ),
771
765
param (L (5.556 ).round (2 ), 5.56 , id = "round-digits" ),
@@ -1043,14 +1037,6 @@ def test_floor_divide_precedence(con):
1043
1037
),
1044
1038
id = "log_base_bigint" ,
1045
1039
marks = [
1046
- pytest .mark .notimpl (
1047
- ["datafusion" ], raises = com .OperationNotDefinedError
1048
- ),
1049
- pytest .mark .notimpl (
1050
- ["datafusion" ],
1051
- raises = ValueError ,
1052
- reason = "Base greatest(9000, t0.bigint_col) for logarithm not supported!" ,
1053
- ),
1054
1040
pytest .mark .notimpl (["polars" ], raises = com .UnsupportedArgumentError ),
1055
1041
pytest .mark .notimpl (
1056
1042
["risingwave" ],
@@ -1100,37 +1086,25 @@ def test_complex_math_functions_columns(
1100
1086
lambda be , t : ibis .least (t .bigint_col , t .int_col ),
1101
1087
lambda be , t : pd .Series (list (map (min , t .bigint_col , t .int_col ))),
1102
1088
id = "least-all-columns" ,
1103
- marks = pytest .mark .notimpl (
1104
- ["datafusion" ], raises = com .OperationNotDefinedError
1105
- ),
1106
1089
),
1107
1090
param (
1108
1091
lambda be , t : ibis .least (t .bigint_col , t .int_col , - 2 ),
1109
1092
lambda be , t : pd .Series (
1110
1093
list (map (min , t .bigint_col , t .int_col , [- 2 ] * len (t )))
1111
1094
),
1112
1095
id = "least-scalar" ,
1113
- marks = pytest .mark .notimpl (
1114
- ["datafusion" ], raises = com .OperationNotDefinedError
1115
- ),
1116
1096
),
1117
1097
param (
1118
1098
lambda be , t : ibis .greatest (t .bigint_col , t .int_col ),
1119
1099
lambda be , t : pd .Series (list (map (max , t .bigint_col , t .int_col ))),
1120
1100
id = "greatest-all-columns" ,
1121
- marks = pytest .mark .notimpl (
1122
- ["datafusion" ], raises = com .OperationNotDefinedError
1123
- ),
1124
1101
),
1125
1102
param (
1126
1103
lambda be , t : ibis .greatest (t .bigint_col , t .int_col , - 2 ),
1127
1104
lambda be , t : pd .Series (
1128
1105
list (map (max , t .bigint_col , t .int_col , [- 2 ] * len (t )))
1129
1106
),
1130
1107
id = "greatest-scalar" ,
1131
- marks = pytest .mark .notimpl (
1132
- ["datafusion" ], raises = com .OperationNotDefinedError
1133
- ),
1134
1108
),
1135
1109
],
1136
1110
)
0 commit comments