Skip to content

Commit c08a704

Browse files
authored
Merge pull request #1163 from citusdata/debian-hll-pg18
new version for pg18 support
2 parents 88abc10 + 4109dc9 commit c08a704

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

.github/workflows/build-package.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,18 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
platform:
25-
- debian/stretch
26-
- debian/buster
2725
- debian/bullseye
2826
- debian/bookworm
29-
- ubuntu/focal
27+
- debian/trixie
3028
- ubuntu/jammy
29+
- ubuntu/noble
3130

3231
steps:
3332
- name: Checkout repository
3433
uses: actions/checkout@v4
3534

3635
- name: Clone tools branch
37-
run: git clone -b v0.8.31 --depth=1 https://github.com/citusdata/tools.git tools
36+
run: git clone -b v0.8.35 --depth=1 https://github.com/citusdata/tools.git tools
3837

3938
- name: Install package dependencies
4039
run: sudo apt-get update && sudo apt-get install libcurl4-openssl-dev libssl-dev python3-testresources

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
hll (2.19.citus-1) stable; urgency=low
2+
3+
* Support for PostgreSQL 16
4+
5+
-- Ibrahim Halatci <ihalatci@microsoft.com> Wed, 10 Feb 2026 13:14:00 +0300
6+
17
hll (2.18.citus-1) stable; urgency=low
28

39
* Support for PostgreSQL 16

debian/control.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Homepage: https://github.com/citusdata/postgresql-hll
1010
Package: postgresql-PGVERSION-hll
1111
Architecture: any
1212
Depends: ${shlibs:Depends}, ${misc:Depends}, postgresql-PGVERSION
13+
Breaks: ${postgresql:Breaks}
1314
Description: HyperLogLog extension for PostgreSQL
1415
HyperLogLog is an algorithm for the count-distinct problem, approximating the
1516
number of distinct elements in a multiset. Calculating the exact cardinality

packaging_ignore.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ base:
1010
- ".* warning: overriding recipe for target 'check'"
1111
- ".*: substitution variable \\$\\{postgresql:Depends\\} unused, but is defined.*"
1212
- ".* unused substitution variable \\$\\{postgresql:Depends\\}.*"
13+
- "cc1plus: warning: '-Werror=' argument '-Werror=implicit-function-declaration' is not valid for C\\+\\+"
1314
debian:
1415
- ".*: W: invalid-license Commercial"
1516
- ".*: W: no-documentation"

pkgvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pkgname=hll
22
hubproj=postgresql-hll
33
pkgdesc=HyperLogLog
4-
pkglatest=2.18.citus-1
4+
pkglatest=2.19.citus-1

postgres-matrix.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ version_matrix:
88
postgres_versions: [ 10, 11, 12, 13, 14, 15, 16 ]
99
- 2.18:
1010
postgres_versions: [ 11, 12, 13, 14, 15, 16, 17 ]
11+
- 2.19:
12+
postgres_versions: [ 12, 13, 14, 15, 16, 17, 18 ]

0 commit comments

Comments
 (0)