-
Notifications
You must be signed in to change notification settings - Fork 610
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(api): support quarterly truncation #9715
Conversation
ACTION NEEDED Ibis follows the Conventional Commits specification for release automation. The PR title and description are used as the merge commit message. Please update your PR title and description to match the specification. |
@@ -97,23 +96,6 @@ def mapper(df, cases, results, default): | |||
|
|||
return cls.partitionwise(mapper, kwargs, name=op.name, dtype=dtype) | |||
|
|||
@classmethod | |||
def visit(cls, op: ops.TimestampTruncate | ops.DateTruncate, arg, unit): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method was entirely duplicated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adds support for quarterly date and timestamp truncate. Closes #9714.