Skip to content

Tags: tvondra/tdigest

Tags

v1.4.1

Toggle v1.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Stamp 1.4.1 (#30)

v1.4.0

Toggle v1.4.0's commit message
Stamp 1.4.0

v1.3.0

Toggle v1.3.0's commit message
Stamp 1.3.0

v1.2.0

Toggle v1.2.0's commit message
Reject adding values with non-positive counts

Commit 9b9d6c8 added the <value,count> API, but the count parameter was
checked with just an assert. That's not appropriate for values supplied
by users (we need to report the error), and moreover it's not present in
production builds. Fixed by calling regular elog(ERROR).

Issue reported by Ahmet Gedemenli (agedemenli), fix by me.

v1.0.1

Toggle v1.0.1's commit message
Bump version to 1.0.1

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix out of bounds access in tdigest_compute_quantiles

For extreme percentiles (close to 0.0 or 1.0) the code might fail due
to out of bounds access to the centroids array. The proper fix is to
return the mean of the first/last centroid.