Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(risingwave): remove old first/last definitions
Browse files Browse the repository at this point in the history
cpcloud committed Aug 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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
@@ -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",

0 comments on commit b9f2b19

Please sign in to comment.