-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: convert primitives to Objects inside of WebChunkReaderFactory (#…
…6669) We were already converting primitives to boxed Objects within each sub-typed `WebColumnData`. This change moves the conversion to objects earlier in the chain, to the WebChunkReaderFactory layer, so that we can recursively accumulate objects into Arrays for array like columns. The jsapi provides js native null values instead of dh internal QueryConstant null values, and therefore data must be stored as boxed objects. To reuse expansion kernel code the incoming Chunk must be an ObjectChunk to generate values into object arrays. Moving the conversion earlier guarantees that we can use the ObjectExpansionKernel and provide downstream users with WebColumnData that JS supports. Fixes #6201.
- Loading branch information
1 parent
375695f
commit 7093839
Showing
17 changed files
with
212 additions
and
864 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
Oops, something went wrong.