-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: combined capacity updates and decoding for all physical dec…
…oders (#2508) - Combines `update_capacity` and `decode_into` into a single function `decode` for all physical (primitive) decoders (`BasicDecoder`, `BinaryPageDecoder`, `ValuePageDecoder`, `FixedListDecoder`, `BitmapDecoder`) - As a result some decoders don't require explicit capacity allocation at a certain level. Should enable decoders to have more flexibility in their decode pipeline (required for dictionary encoding) - Buffers built up from leaves of the encoding tree and combined instead of being recursively passed down (like earlier) - Rename PhysicalPageDecoder to PrimitivePageDecoder
- Loading branch information
Showing
7 changed files
with
117 additions
and
214 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
Oops, something went wrong.