Skip to content
This repository has been archived by the owner on Nov 3, 2019. It is now read-only.

Commit

Permalink
bump superloglog_counter to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tvondra committed Aug 29, 2015
1 parent e00dbdd commit f2c63dc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions superloglog/META.json
Expand Up @@ -2,7 +2,7 @@
"name": "superloglog_estimator",
"abstract": "Estimates number of distinct elements in a data set (aggregate and a data type).",
"description": "Provides an alternative to COUNT(DISTINCT) aggregate, computing an estimate of number of distinct values, and a data type that may be used within a table (and updated continuously). This implementation is based on SuperLogLog method, an enhancement of the LogLog estimator (see the paper 'LogLog Counting of Large Cardinalities' by Durand and Martin, published in 2003).",
"version": "1.2.1",
"version": "1.2.2",
"maintainer": "Tomas Vondra <tv@fuzzy.cz>",
"license": "bsd",
"prereqs": {
Expand All @@ -14,9 +14,9 @@
},
"provides": {
"superloglog_counter": {
"file": "sql/superloglog_counter--1.2.1.sql",
"file": "sql/superloglog_counter--1.2.2.sql",
"docfile" : "README.md",
"version": "1.2.1"
"version": "1.2.2"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion superloglog/Makefile
Expand Up @@ -2,7 +2,7 @@ MODULE_big = superloglog_counter
OBJS = src/superloglog_counter.o src/superloglog.o

EXTENSION = superloglog_counter
DATA = sql/superloglog_counter--1.2.1.sql sql/superloglog_counter--1.1.0--1.2.0.sql sql/superloglog_counter--1.2.0--1.2.1.sql
DATA = sql/superloglog_counter--1.2.2.sql sql/superloglog_counter--1.1.0--1.2.0.sql sql/superloglog_counter--1.2.0--1.2.1.sql sql/superloglog_counter--1.2.1--1.2.2.sql
MODULES = superloglog_counter

TESTS = $(wildcard test/sql/*.sql)
Expand Down
1 change: 1 addition & 0 deletions superloglog/sql/superloglog_counter--1.2.1--1.2.2.sql
@@ -0,0 +1 @@
-- empty
4 changes: 2 additions & 2 deletions superloglog/superloglog_counter.control
@@ -1,6 +1,6 @@
# SuperLogLog estimator control
comment = 'Aggregation functions and data type for distinct estimation based on SuperLogLog.'
default_version = '1.2.1'
default_version = '1.2.2'
relocatable = true

module_pathname = '$libdir/superloglog_counter'
module_pathname = '$libdir/superloglog_counter'
2 changes: 1 addition & 1 deletion superloglog/test/sql/base.sql
Expand Up @@ -3,7 +3,7 @@ BEGIN;

-- disable the notices for the create script (shell types etc.)
SET client_min_messages = 'WARNING';
\i sql/superloglog_counter--1.2.1.sql
\i sql/superloglog_counter--1.2.2.sql
SET client_min_messages = 'NOTICE';

\set ECHO all
Expand Down

0 comments on commit f2c63dc

Please sign in to comment.