-
Notifications
You must be signed in to change notification settings - Fork 590
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: Add support for case/when in PySpark backend #2610
Conversation
4c7d0cf
to
fc6239a
Compare
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.
pls add a release note as well
| if isinstance(start, pyspark.sql.Column) or isinstance( | ||
| length, pyspark.sql.Column | ||
| ): | ||
| raise NotImplementedError( |
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.
is this case tested?
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 is covered by this:
https://github.com/ibis-project/ibis/blob/master/ibis/backends/tests/test_string.py#L216
When catching NotImplemenntedError, the test will be xfailed.
fc6239a
to
bde12e7
Compare
bde12e7
to
b3c4b16
Compare
Looks like it was accidentally dropped in ibis-project#2610
Looks like it was accidentally dropped in ibis-project#2610
Looks like it was accidentally dropped in #2610
What's the change
How is this tested
Add test under test_string.py for
substrAdd test under test_generic.py for
case/when