goodhistogram: add regression test for rightmost-bucket density fix - #13
Merged
Merged
Conversation
The rightmost-bucket density bias fixed in f4b1ed8 shipped without a regression test. Add TestQuantileTopBucketDensity, which places all mass in the last in-range bucket and asserts the median lands at or past the bucket midpoint. With the fix (right-edge density = last bucket's average) the density rises across the bucket and the median sits past the midpoint; under the bug (right-edge density = 0) it is pulled below. The test covers both the single-value (ValueAtQuantile) and batch (ValuesAtQuantiles) paths, which compute boundary densities independently. Verified the test fails when boundaryDensity[n] is reset to 0 and passes against the current code. Co-Authored-By: roachdev-claude <roachdev-claude-bot@cockroachlabs.com>
kyle-a-wong
approved these changes
Aug 26, 2026
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.
Summary
The rightmost-bucket density bias fixed in f4b1ed8 ("fix rightmost-bucket density bias in quantile interpolation") shipped without a regression test. This adds one.
TestQuantileTopBucketDensityplaces all mass in the last in-range bucket and asserts the median lands at or past the bucket midpoint:It covers both the single-value (
ValueAtQuantile) and batch (ValuesAtQuantiles) paths, since they compute boundary densities independently.Verification
boundaryDensity[n]is reset to0(median972810< midpoint980774).main.No production code changes.