-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove trimming inside individual chunks.
Trimming `Chunk`s (always from the left) causes a lot of internal work with only limited benefit since we manage visibility with `stream::View`s on top of `Chunk`s anyway. This patch removes trimming inside `Chunk`s so now any trimming only removes `Chunk`s from `Chain`s, but does not internally change individual `Chunk`s anymore. This might lead to slightly increased memory use, but callers usually have that data in memory anyway. Closes #1571. (cherry picked from commit 625a607)
- Loading branch information
Showing
2 changed files
with
1 addition
and
22 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