Skip to content

feat: multi-ext-versions-pgrcron #1549

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

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.0.1.065-orioledb"
postgres17: "17.4.1.015"
postgres15: "15.8.1.072"
postgresorioledb-17: "17.0.1.067-orioledb-rc-1"
postgres17: "17.4.1.017-rc-1"
postgres15: "15.8.1.074-rc-1"

# Non Postgres Extensions
pgbouncer_release: "1.19.0"
Expand Down
31 changes: 31 additions & 0 deletions nix/ext/pg_cron-1.3.1-pg15.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
diff --git a/src/pg_cron.c b/src/pg_cron.c
index e0ca973..4d51b2c 100644
--- a/src/pg_cron.c
+++ b/src/pg_cron.c
@@ -14,6 +14,8 @@
#include <sys/resource.h>

#include "postgres.h"
+#include "commands/async.h"
+#include "miscadmin.h"
#include "fmgr.h"

/* these are always necessary for a bgworker */
@@ -1908,7 +1910,7 @@ CronBackgroundWorker(Datum main_arg)
/* Post-execution cleanup. */
disable_timeout(STATEMENT_TIMEOUT, false);
CommitTransactionCommand();
- ProcessCompletedNotifies();
+ /* ProcessCompletedNotifies removed */
pgstat_report_activity(STATE_IDLE, command);
pgstat_report_stat(true);

@@ -2025,7 +2027,7 @@ ExecuteSqlString(const char *sql)
*/
oldcontext = MemoryContextSwitchTo(parsecontext);
#if PG_VERSION_NUM >= 100000
- querytree_list = pg_analyze_and_rewrite(parsetree, sql, NULL, 0,NULL);
+ querytree_list = pg_analyze_and_rewrite_fixedparams(parsetree, sql, NULL, 0, NULL);
#else
querytree_list = pg_analyze_and_rewrite(parsetree, sql, NULL, 0);
#endif
117 changes: 99 additions & 18 deletions nix/ext/pg_cron.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,112 @@
{ lib, stdenv, fetchFromGitHub, postgresql }:

stdenv.mkDerivation rec {
pname = "pg_cron";
version = "1.6.4";
let
allVersions = {
"1.3.1" = {
rev = "v1.3.1";
hash = "sha256-rXotNOtQNmA55ErNxGoNSKZ0pP1uxEVlDGITFHuqGG4=";
patches = [ ./pg_cron-1.3.1-pg15.patch ];
};
"1.4.2" = {
rev = "v1.4.2";
hash = "sha256-P0Fd10Q1p+KrExb35G6otHpc6pD61WnMll45H2jkevM=";
};
"1.6.4" = {
rev = "v1.6.4";
hash = "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40=";
};
"1.5.2" = {
rev = "v1.5.2";
hash = "sha256-+quVWbKJy6wXpL/zwTk5FF7sYwHA7I97WhWmPO/HSZ4=";
};
};

# Simple version string that concatenates all versions with dashes
versionString = "multi-" + lib.concatStringsSep "-" (map (v: lib.replaceStrings ["."] ["-"] v) (lib.attrNames allVersions));

mkPgCron = pgCronVersion: { rev, hash, patches ? [] }: stdenv.mkDerivation {
pname = "pg_cron";
version = "${pgCronVersion}-pg${lib.versions.major postgresql.version}";

buildInputs = [ postgresql ];
inherit patches;

src = fetchFromGitHub {
owner = "citusdata";
repo = "pg_cron";
inherit rev hash;
};

buildPhase = ''
make PG_CONFIG=${postgresql}/bin/pg_config

# Create version-specific SQL file
cp pg_cron.sql pg_cron--${pgCronVersion}.sql

buildInputs = [ postgresql ];
# Create versioned control file with modified module path
sed -e "/^default_version =/d" \
-e "s|^module_pathname = .*|module_pathname = '\$libdir/pg_cron'|" \
pg_cron.control > pg_cron--${pgCronVersion}.control
'';

src = fetchFromGitHub {
owner = "citusdata";
repo = pname;
rev = "v${version}";
hash = "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40=";
installPhase = ''
mkdir -p $out/{lib,share/postgresql/extension}

# Install versioned library
install -Dm755 pg_cron${postgresql.dlSuffix} $out/lib/pg_cron-${pgCronVersion}${postgresql.dlSuffix}

# Install version-specific files
install -Dm644 pg_cron--${pgCronVersion}.sql $out/share/postgresql/extension/
install -Dm644 pg_cron--${pgCronVersion}.control $out/share/postgresql/extension/

# Install upgrade scripts
find . -name 'pg_cron--*--*.sql' -exec install -Dm644 {} $out/share/postgresql/extension/ \;
'';
};

getVersions = pg:
if lib.versionAtLeast pg.version "17"
then { "1.6.4" = allVersions."1.6.4"; }
else allVersions;

allVersionsForPg = lib.mapAttrs mkPgCron (getVersions postgresql);

in
stdenv.mkDerivation {
pname = "pg_cron-all";
version = versionString;

buildInputs = lib.attrValues allVersionsForPg;

dontUnpack = true;
dontConfigure = true;
dontBuild = true;

installPhase = ''
mkdir -p $out/{lib,share/postgresql/extension}

cp *${postgresql.dlSuffix} $out/lib
cp *.sql $out/share/postgresql/extension
cp *.control $out/share/postgresql/extension

# Install all versions
for drv in ${lib.concatStringsSep " " (lib.attrValues allVersionsForPg)}; do
ln -sv $drv/lib/* $out/lib/
cp -v --no-clobber $drv/share/postgresql/extension/* $out/share/postgresql/extension/ || true
done

# Create default symlinks
latest_control=$(ls -v $out/share/postgresql/extension/pg_cron--*.control | tail -n1)
latest_version=$(basename "$latest_control" | sed -E 's/pg_cron--([0-9.]+).control/\1/')

# Create main control file with default_version
echo "default_version = '$latest_version'" > $out/share/postgresql/extension/pg_cron.control
cat "$latest_control" >> $out/share/postgresql/extension/pg_cron.control

# Library symlink
ln -sfnv pg_cron-$latest_version${postgresql.dlSuffix} $out/lib/pg_cron${postgresql.dlSuffix}
'';

meta = with lib; {
description = "Run Cron jobs through PostgreSQL";
homepage = "https://github.com/citusdata/pg_cron";
changelog = "https://github.com/citusdata/pg_cron/raw/v${version}/CHANGELOG.md";
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
description = "Run Cron jobs through PostgreSQL (multi-version compatible)";
homepage = "https://github.com/citusdata/pg_cron";
platforms = postgresql.meta.platforms;
license = licenses.postgresql;
};
}
Loading