forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-4350: [Python] Fix conversion from Python to Arrow with nested …
…lists and NumPy dtype=object items NumPy object array values weren't being iterated over in the case where the value type is `list<T>` instead of some primitive type like `int64`. This code path appears to have never been properly tested, so when a user hit it, it didn't work. Author: Wes McKinney <[email protected]> Closes apache#4609 from wesm/ARROW-4350 and squashes the following commits: 6d7883e <Wes McKinney> Code review feedback d2f3831 <Wes McKinney> Add xfailing unit test for ARROW-5645 b2b3c50 <Wes McKinney> Remove unneeded namespace a74e5cc <Wes McKinney> Actually unbox NPY_OBJECT arrays in ListConverter 279f681 <Wes McKinney> Expose infer_type function
- Loading branch information
Showing
8 changed files
with
99 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters