-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"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.2", | ||
"version": "1.4.3", | ||
"maintainer": [ | ||
"Tomas Vondra <[email protected]>", | ||
"Nils Dijk <[email protected]>" | ||
|
@@ -17,9 +17,9 @@ | |
}, | ||
"provides": { | ||
"quantile": { | ||
"file": "sql/quantile--1.4.1--1.4.2.sql", | ||
"file": "sql/quantile--1.4.2--1.4.3.sql", | ||
"docfile" : "README.md", | ||
"version": "1.4.2" | ||
"version": "1.4.3" | ||
} | ||
}, | ||
"resources": { | ||
|
This file contains 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
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
comment = 'Provides tdigest aggregate function.' | ||
default_version = '1.4.2' | ||
default_version = '1.4.3' | ||
relocatable = true |