Skip to content

Commit df188d8

Browse files
author
Burak Yucesoy
committed
Release 2.12
1 parent f38d824 commit df188d8

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ matrix:
1010
- env: PGVERSION=10
1111
- env: PGVERSION=11
1212
before_install:
13-
- git clone -b v0.7.5 --depth 1 https://github.com/citusdata/tools.git
13+
- git clone -b v0.7.9 --depth 1 https://github.com/citusdata/tools.git
1414
- sudo make -C tools install
1515
- setup_apt
1616
- nuke_pg

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2018-11-03
2+
==========
3+
v2.12 - More updates for PostgreSQL 11 and fixes
4+
15
2018-08-25
26
==========
37
v2.11 - Updated for PostgreSQL 11

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
EXTENSION = hll
15-
EXTVERSIONS = 2.10 2.11
15+
EXTVERSIONS = 2.10 2.11 2.12
1616

1717
DATA_built = $(foreach v,$(EXTVERSIONS),$(EXTENSION)--$(v).sql)
1818
DATA = $(wildcard $(EXTENSION)--*--*.sql)
@@ -34,3 +34,5 @@ $(EXTENSION)--2.10.sql: $(EXTENSION).sql
3434
cat $^ > $@
3535
$(EXTENSION)--2.11.sql: $(EXTENSION)--2.10.sql $(EXTENSION)--2.10--2.11.sql
3636
cat $^ > $@
37+
$(EXTENSION)--2.12.sql: $(EXTENSION)--2.11.sql $(EXTENSION)--2.11--2.12.sql
38+
cat $^ > $@

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ Build
376376

377377
Specify versions:
378378

379-
export VER=2.11
379+
export VER=2.12
380380
export PGSHRT=11
381381

382382
Make sure `Makefile` points to the correct `pg_config` for the specified version, since `rpmbuild` doesn't respect env variables:
@@ -394,11 +394,11 @@ Execute rpmbuild:
394394

395395
Install RPM:
396396

397-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.11.x86_64.rpm
397+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.12.x86_64.rpm
398398

399399
And if you want the debugging build:
400400

401-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.11.x86_64.rpm
401+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.12.x86_64.rpm
402402

403403

404404
## From source ##
@@ -439,7 +439,7 @@ And then just verify it's there:
439439
List of installed extensions
440440
Name | Version | Schema | Description
441441
---------+---------+------------+-----------------------------------
442-
hll | 2.11 | public | type for storing hyperloglog data
442+
hll | 2.12 | public | type for storing hyperloglog data
443443
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
444444
(2 rows)
445445

expected/setup.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
CREATE EXTENSION hll VERSION '2.10';
22
ALTER EXTENSION hll UPDATE TO '2.11';
3+
ALTER EXTENSION hll UPDATE TO '2.12';

hll--2.11--2.12.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Empty upgrade file to upgrade extension from 2.11 to 2.12

hll.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
# hll extension
1616
comment = 'type for storing hyperloglog data'
17-
default_version = '2.11'
17+
default_version = '2.12'
1818
module_pathname = '$libdir/hll'

sql/setup.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
CREATE EXTENSION hll VERSION '2.10';
22
ALTER EXTENSION hll UPDATE TO '2.11';
3+
ALTER EXTENSION hll UPDATE TO '2.12';

0 commit comments

Comments
 (0)