-
Notifications
You must be signed in to change notification settings - Fork 13
/
META.json
38 lines (38 loc) · 1.14 KB
/
META.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "t-digest",
"abstract": "Aggregate for an on-line accumulation of rank-based statistics such as quantiles and trimmed means.",
"description": "This PostgreSQL extension implements t-digest, a data structure for on-line accumulation of rank-based statistics such as quantiles and trimmed means. The algorithm is also very friendly to parallel programs.",
"version": "1.4.3",
"maintainer": [
"Tomas Vondra <[email protected]>",
"Nils Dijk <[email protected]>"
],
"license": "bsd",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "13.0.0"
}
}
},
"provides": {
"quantile": {
"file": "sql/quantile--1.4.2--1.4.3.sql",
"docfile" : "README.md",
"version": "1.4.3"
}
},
"resources": {
"repository": {
"url": "https://github.com/tvondra/tdigest.git",
"web": "http://github.com/tvondra/tdigest",
"type": "git"
}
},
"tags" : ["quantile", "median", "mean", "aggregate"],
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"release_status" : "stable"
}