8000 feat: pg_partman all major versions by samrose · Pull Request #1597 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

feat: pg_partman all major versions #1597

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
feat: pg_partman all major versions
  • Loading branch information
samrose committed May 19, 2025
commit 0ec8520c3562c7441d1be95282f540f2e9d0b24e
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@
./nix/ext/wrappers/default.nix
./nix/ext/supautils.nix
./nix/ext/plv8.nix
./nix/ext/pg_partman.nix
];

#Where we import and build the orioledb extension, we add on our custom extensions
Expand Down
4 changes: 2 additions & 2 deletions nix/ext/pg_partman.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

stdenv.mkDerivation rec {
pname = "pg_partman";
version = "5.1.0";
version = "5.2.4";

buildInputs = [ postgresql ];

src = fetchFromGitHub {
owner = "pgpartman";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-GrVOJ5ywZMyqyDroYDLdKkXDdIJSDGhDfveO/ZvrmYs=";
sha256 = "sha256-i/o+JZEXnJRO17kfdTw87aca28+I8pvuFZsPMA/kf+w=";
};

installPhase = ''
Expand Down
3 changes: 2 additions & 1 deletion nix/tests/expected/z_15_ext_interface.out
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ order by
name
-----------------
pg_cron
pg_partman
pgjwt
tsm_system_time
(3 rows)
(4 rows)

/*

Expand Down
3 changes: 2 additions & 1 deletion nix/tests/expected/z_17_ext_interface.out
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ order by
name
------------------------
pg_cron
pg_partman
pgjwt
postgis_tiger_geocoder
tsm_system_time
(4 rows)
(5 rows)

/*

Expand Down
3 changes: 2 additions & 1 deletion nix/tests/expected/z_orioledb-17_ext_interface.out
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ order by
name
------------------------
pg_cron
pg_partman
pgjwt
postgis_tiger_geocoder
tsm_system_time
(4 rows)
(5 rows)

/*

Expand Down
0