Skip to content

Commit 3b46994

Browse files
authored
Bump to v2.18 (#150)
1 parent 835bdca commit 3b46994

File tree

6 files changed

+15
-7
lines changed

6 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2023-08-29
2+
==========
3+
v2.18
4+
- Updated for PostgreSQL 16
5+
16
2022-08-25
27
==========
38
v2.17

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ Compatibility
385385

386386
This module has been tested on:
387387

388-
* **Postgres 9.4, 9.5, 9.6, 10, 11, 12, 13, 14, 15**
388+
* **Postgres 9.4, 9.5, 9.6, 10, 11, 12, 13, 14, 15, 16**
389389

390390
If you end up needing to change something to get this running on another system, send us the diff and we'll try to work it in!
391391

@@ -398,7 +398,7 @@ Build
398398

399399
Specify versions:
400400

401-
export VER=2.17
401+
export VER=2.18
402402
export PGSHRT=11
403403

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

417417
Install RPM:
418418

419-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.16.x86_64.rpm
419+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.18.x86_64.rpm
420420

421421
And if you want the debugging build:
422422

423-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.17.x86_64.rpm
423+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.18.x86_64.rpm
424424

425425

426426
## From source ##
@@ -471,7 +471,7 @@ And then just verify it's there:
471471
List of installed extensions
472472
Name | Version | Schema | Description
473473
---------+---------+------------+-----------------------------------
474-
hll | 2.17 | public | type for storing hyperloglog data
474+
hll | 2.18 | public | type for storing hyperloglog data
475475
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
476476
(2 rows)
477477

@@ -480,8 +480,8 @@ Tests
480480

481481
Start a PostgreSQL server running in default port:
482482

483-
pg_ctl -D data -l logfile -c start
484483
initdb -D data
484+
pg_ctl -D data -l logfile -c start
485485

486486
Run the tests:
487487

expected/setup.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ ALTER EXTENSION hll UPDATE TO '2.14';
66
ALTER EXTENSION hll UPDATE TO '2.15';
77
ALTER EXTENSION hll UPDATE TO '2.16';
88
ALTER EXTENSION hll UPDATE TO '2.17';
9+
ALTER EXTENSION hll UPDATE TO '2.18';

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.17'
17+
default_version = '2.18'
1818
module_pathname = '$libdir/hll'

sql/setup.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ ALTER EXTENSION hll UPDATE TO '2.14';
66
ALTER EXTENSION hll UPDATE TO '2.15';
77
ALTER EXTENSION hll UPDATE TO '2.16';
88
ALTER EXTENSION hll UPDATE TO '2.17';
9+
ALTER EXTENSION hll UPDATE TO '2.18';

update/hll--2.17--2.18.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.16 to 2.17

0 commit comments

Comments
 (0)