Skip to content

Commit 508f592

Browse files
committed
Problem: Citus 13 marked broken on Postgres 17
This is, however, not true as Citus 13 supports Postgres 17 Solution: only mark versions below 13 as broken on Postgres 17
1 parent a78c257 commit 508f592

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/citus.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ def dependencies
1717

1818
def broken?
1919
# https://github.com/citusdata/citus/issues/7708
20-
Pgpm::Postgres::Distribution.in_scope.major_version > 16
20+
version < 13 && Pgpm::Postgres::Distribution.in_scope.major_version > 16
2121
end
2222
end

0 commit comments

Comments
 (0)