Skip to content

Commit 65f0973

Browse files
gforsythcpcloud
authored andcommitted
chore(value): remove deprecated greatest and least methods
BREAKING CHANGE: `Value.greatest` and `Value.least` are removed. Use `ibis.greatest` and `ibis.least`, instead.
1 parent 91764d3 commit 65f0973

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

ibis/expr/types/generic.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -301,14 +301,6 @@ def coalesce(self, *args: Value) -> Value:
301301
"""
302302
return ops.Coalesce((self, *args)).to_expr()
303303

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-
312304
def typeof(self) -> ir.StringValue:
313305
"""Return the string name of the datatype of self.
314306

0 commit comments

Comments
 (0)