forked from timescale/timescaledb
-
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.
Decouple batch array from DecompressChunk
Refactor DecompressChunk to make it more modular. This is the first step of a bigger refactor that aims to create better separation of concerns across the code that implements transparent decompression. Currently, the code is only semi-modular, and all state is kept directly in the DecompressChunk scan node. As a result, this object has to be passed into all the related modules, which makes it harder to call that code from other places without a reference to the "big" scan node. The goal of this change (and upcoming changes) is to make each module hold its own state relevant to that module. DecompressChunk can then be composed of these distinct modules instead of being a monolith.
- Loading branch information
Showing
8 changed files
with
164 additions
and
157 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.