Skip to content

Commit

Permalink
chore(risingwave): remove old first/last definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Aug 2, 2024
1 parent 92328c1 commit b9f2b19
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions ibis/backends/sql/compilers/risingwave.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,6 @@ def visit_Correlation(self, op, *, left, right, how, where):
op, left=left, right=right, how=how, where=where
)

def visit_First(self, op, *, arg, where):
return self.agg.first_value(arg, where=where)

def visit_Last(self, op, *, arg, where):
return self.agg.last_value(arg, where=where)

def visit_TimestampTruncate(self, op, *, arg, unit):
unit_mapping = {
"Y": "year",
Expand Down

0 comments on commit b9f2b19

Please sign in to comment.