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

Commit

Permalink
fix incomplete filename in hyperloglog Makefile, bump to 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
tvondra committed Sep 1, 2015
1 parent b6f8234 commit 4e2c44f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions hyperloglog/META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "hyperloglog_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 HyperLogLog algorithm, an enhancement of LogLog (see the paper 'HyperLogLog: the analysis of near-optimal cardinality estimation algorithm' by Flajolet, Fusy, Gandouet and Meunier, published in 2007).",
"version": "1.2.5",
"version": "1.2.6",
"maintainer": "Tomas Vondra <tv@fuzzy.cz>",
"license": "bsd",
"prereqs": {
Expand All @@ -14,9 +14,9 @@
},
"provides": {
"hyperloglog_counter": {
"file": "sql/hyperloglog_counter--1.2.5.sql",
"file": "sql/hyperloglog_counter--1.2.6.sql",
"docfile" : "README.md",
"version": "1.2.5"
"version": "1.2.6"
}
},
"resources": {
Expand Down
2 changes: 1 addition & 1 deletion hyperloglog/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ MODULE_big = hyperloglog_counter
OBJS = src/hyperloglog_counter.o src/hyperloglog.o

EXTENSION = hyperloglog_counter
DATA = sql/hyperloglog_counter--1.1.0--1.2.0.sql sql/hyperloglog_counter--1.2.0--1.2.3.sql sql/hyperloglog_counter--1.2.3--1.2.4.sql sql/hyperloglog--1.2.4--1.2.5.sql sql/hyperloglog_counter--1.2.5.sql
DATA = sql/hyperloglog_counter--1.1.0--1.2.0.sql sql/hyperloglog_counter--1.2.0--1.2.3.sql sql/hyperloglog_counter--1.2.3--1.2.4.sql sql/hyperloglog_counter--1.2.4--1.2.6.sql sql/hyperloglog_counter--1.2.6.sql
MODULES = hyperloglog_counter

TESTS = $(wildcard test/sql/*.sql)
Expand Down
2 changes: 1 addition & 1 deletion hyperloglog/hyperloglog_counter.control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# HyperLogLog estimator control
comment = 'Aggregation functions and data type for distinct estimation based on HyperLogLog.'
default_version = '1.2.5'
default_version = '1.2.6'
relocatable = true

module_pathname = '$libdir/hyperloglog_counter'
2 changes: 1 addition & 1 deletion hyperloglog/test/sql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ BEGIN;

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

\set ECHO all
Expand Down

0 comments on commit 4e2c44f

Please sign in to comment.