-
Notifications
You must be signed in to change notification settings - Fork 120
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
SNOW-1373556: Implement dropna using a new expression #1748
Conversation
Question: why would the previous implementation fail with maximum recursion depth error? |
@@ -2934,6 +2934,14 @@ def test_dropna(session, local_testing_mode): | |||
assert "how ('bad') should be 'any' or 'all'" in str(exc_info) | |||
|
|||
|
|||
def test_dropna_large_num_of_columns(session): |
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.
Add @pytest.mark.localtest
like below?
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.
done
|
b05db49
to
d741fc0
Compare
Which Jira issue is this PR addressing? Make sure that there is an accompanying issue to your PR.
Fixes SNOW-1373556
Fill out the following pre-review checklist:
Please describe how your code solves the related issue.
Previous implementation will fail due to maximum recursion exceeded when there are a large number of columns