{ "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.1", "maintainer": [ "Tomas Vondra ", "Alexey Bashtanov " ], "license": "bsd", "prereqs": { "runtime": { "requires": { "PostgreSQL": "9.6.0" } } }, "provides": { "count_distinct": { "file": "sql/count_distinct--3.0.1.sql", "docfile" : "README.md", "version": "3.0.1" } }, "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" }