Skip to content
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 @@ -10,9 +10,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.6.0.098-orioledb"
postgres17: "17.6.1.141"
postgres15: "15.14.1.141"
postgresorioledb-17: "17.6.0.099-orioledb-test-1"
postgres17: "17.6.1.142-test-1"
postgres15: "15.14.1.142-test-1"

# Non Postgres Extensions
pgbouncer_release: 1.25.1
Expand Down
26 changes: 26 additions & 0 deletions nix/ext/pg_cron/pg_cron-heap-tables.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/pg_cron--1.2--1.3.sql b/pg_cron--1.2--1.3.sql
index b1e6a68..f4b94e7 100644
--- a/pg_cron--1.2--1.3.sql
+++ b/pg_cron--1.2--1.3.sql
@@ -12,7 +12,7 @@ CREATE TABLE cron.job_run_details (
return_message text,
start_time timestamptz,
end_time timestamptz
-);
+) USING heap;

GRANT SELECT ON cron.job_run_details TO public;
GRANT DELETE ON cron.job_run_details TO public;
diff --git a/pg_cron.sql b/pg_cron.sql
index 2de23f4..e843ac7 100644
--- a/pg_cron.sql
+++ b/pg_cron.sql
@@ -23,7 +23,7 @@ CREATE TABLE cron.job (
nodeport int not null default pg_catalog.inet_server_port(),
database text not null default pg_catalog.current_database(),
username text not null default current_user
-);
+) USING heap;
GRANT SELECT ON cron.job TO public;
ALTER TABLE cron.job ENABLE ROW LEVEL SECURITY;
CREATE POLICY cron_job_policy ON cron.job USING (username OPERATOR(pg_catalog.=) current_user);
5 changes: 4 additions & 1 deletion nix/ext/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@
"orioledb-17"
],
"rev": "v1.6.4",
"hash": "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40="
"hash": "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40=",
"patches": [
"pg_cron-heap-tables.patch"
]
}
},
"pg_graphql": {
Expand Down
Loading