-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix List offsets bug in mixed type list column in nested JSON reader (#…
…12447) Fixes the bug in list offsets in mixed types - string/value type with struct type. In nested JSON reader, following json string `[{"a":[123, {"0": 123}], "b":1.0}, {"b":1.1}, {"b":2.1}]` should produce first column as ``` List<Struct<float,>>: Length : 3 Offsets : 0, 2, 2, 2 Null count: 2 001 Struct<float,>: Length : 2: Null count: 1 10 10 NULL, 123 ``` Depends on #12330 closes #12418 Authors: - Karthikeyan (https://github.com/karthikeyann) Approvers: - Nghia Truong (https://github.com/ttnghia) - Bradley Dice (https://github.com/bdice) URL: #12447
- Loading branch information
1 parent
6dda9d8
commit f990f93
Showing
3 changed files
with
263 additions
and
51 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