Skip to content

Commit be7ef6f

Browse files
authored
Merge pull request #170 from citusdata/bump-v2-19
version bump to 2.19 for pg18 support
2 parents 2a1ff96 + 5fdde90 commit be7ef6f

File tree

7 files changed

+15
-7
lines changed

7 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+
2025-10-17
2+
==========
3+
v2.19
4+
- Updated for PostgreSQL 18
5+
16
2023-08-29
27
==========
38
v2.18

README.md

Lines changed: 5 additions & 5 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, 16, 17**
388+
* **Postgres 9.4, 9.5, 9.6, 10, 11, 12, 13, 14, 15, 16, 17, 18**
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.18
401+
export VER=2.19
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.18.x86_64.rpm
419+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-2.19.x86_64.rpm
420420

421421
And if you want the debugging build:
422422

423-
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.18.x86_64.rpm
423+
rpm -Uv rpmbuild/RPMS/x86_64/postgresql11-hll-debuginfo-2.19.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.18 | public | type for storing hyperloglog data
474+
hll | 2.19 | public | type for storing hyperloglog data
475475
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
476476
(2 rows)
477477

expected/setup.out

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

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

sql/setup.sql

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

update/hll--2.17--2.18.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-- Empty upgrade file to upgrade extension from 2.16 to 2.17
1+
-- Empty upgrade file to upgrade extension from 2.17 to 2.18

update/hll--2.18--2.19.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.18 to 2.19

0 commit comments

Comments
 (0)