[Spill To Disk][1/6] The adjustment of the basic BufferedBlockMgr includes the following change#4151
Merged
kangkaisen merged 1 commit intoapache:masterfrom Jul 30, 2020
Merged
Conversation
…ludes the following change
1. Add Exec msg for BufferedBlockMgr for debug tuning
2. Change the API of Consume Memory? We will use it in HashTable in the future
3. Fix mistake of count _unfullfilled_reserved_buffers in BufferedBlockMgr
issue:apache#3926
Closed
BiteTheDDDDt
pushed a commit
to BiteTheDDDDt/incubator-doris
that referenced
this pull request
Sep 1, 2025
…#51948) (apache#4151) ### What problem does this PR solve? Support GROUP BY ... WITH ROLLUP syntax mysql> SELECT year, month, SUM(amount) AS total_amount FROM sales GROUP BY year, month WITH ROLLUP order by year desc, month desc; +------+-------+--------------+ | year | month | total_amount | +------+-------+--------------+ | 2024 | 1 | 3400.00 | | 2024 | NULL | 3400.00 | | 2023 | 2 | 4000.00 | | 2023 | 1 | 3000.00 | | 2023 | NULL | 7000.00 | | NULL | NULL | 10400.00 | +------+-------+--------------+ 6 rows in set (0.02 sec)
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
issue:#3926
Proposed changes
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.
Types of changes
What types of changes does your code introduce to Doris?
Put an
xin the boxes that applyChecklist
Put an
xin the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.