We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
greatest
least
1 parent 91764d3 commit 65f0973Copy full SHA for 65f0973
ibis/expr/types/generic.py
@@ -301,14 +301,6 @@ def coalesce(self, *args: Value) -> Value:
301
"""
302
return ops.Coalesce((self, *args)).to_expr()
303
304
- @deprecated(as_of="8.0.0", instead="use ibis.greatest(self, rest...) instead")
305
- def greatest(self, *args: ir.Value) -> ir.Value:
306
- return ops.Greatest((self, *args)).to_expr()
307
-
308
- @deprecated(as_of="8.0.0", instead="use ibis.least(self, rest...) instead")
309
- def least(self, *args: ir.Value) -> ir.Value:
310
- return ops.Least((self, *args)).to_expr()
311
312
def typeof(self) -> ir.StringValue:
313
"""Return the string name of the datatype of self.
314
0 commit comments