You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "jorisvandenbossche (via GitHub)" <gi...@apache.org> on 2023/02/16 15:26:33 UTC

[GitHub] [arrow] jorisvandenbossche commented on a diff in pull request #34184: GH-34154: [Python] Add `is_nan` expression

jorisvandenbossche commented on code in PR #34184:
URL: https://github.com/apache/arrow/pull/34184#discussion_r1108636109


##########
python/pyarrow/tests/test_compute.py:
##########
@@ -1634,6 +1634,10 @@ def test_is_null():
     expected = pa.array([False, False, False, True, True])
     assert result.equals(expected)
 
+    result = arr.is_nan()
+    expected = pa.array([False, False, False, False, True])

Review Comment:
   ```suggestion
       expected = pa.array([False, False, False, None, True])
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org