-
Notifications
You must be signed in to change notification settings - Fork 13
/
META.json
38 lines (38 loc) · 1.26 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": "count_distinct",
"abstract": "Aggregate for computing number of distinct values using a sorted set.",
"description": "The regular COUNT(DISTINCT ...) always performs a regular sort internally, which results in bad performance if there's a lot of duplicate values. This extension implements custom count_distinct aggregate function that uses an optimized sorted set to achieve the same purpose. The extension currently supports only data types passed by value",
"version": "3.0.2",
"maintainer": [
"Tomas Vondra <[email protected]>",
"Alexey Bashtanov <[email protected]>"
],
"license": "bsd",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.6.0"
}
}
},
"provides": {
"count_distinct": {
"file": "sql/count_distinct--3.0.2.sql",
"docfile" : "README.md",
"version": "3.0.2"
}
},
"resources": {
"repository": {
"url": "https://github.com/tvondra/count_distinct.git",
"web": "http://github.com/tvondra/count_distinct",
"type": "git"
}
},
"tags" : ["count", "distinct", "aggregate"],
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"release_status" : "testing"
}