Skip to content

Commit b713d57

Browse files
committed
Merge remote-tracking branch 'origin/develop' into pg-17-10-update
# Conflicts: # ansible/vars.yml
2 parents 61ec683 + 7bb86cb commit b713d57

3 files changed

Lines changed: 31 additions & 2 deletions

File tree

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ postgres_major:
1010

1111
# Full version strings for each major version
1212
postgres_release:
13-
postgresorioledb-17: "17.6.0.099-orioledb"
13+
postgresorioledb-17: "17.6.0.100-orioledb"
1414
postgres17: "17.10.1.001"
1515
postgres15: "15.18.1.001"
1616

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
diff --git a/pg_cron--1.2--1.3.sql b/pg_cron--1.2--1.3.sql
2+
index b1e6a68..f4b94e7 100644
3+
--- a/pg_cron--1.2--1.3.sql
4+
+++ b/pg_cron--1.2--1.3.sql
5+
@@ -12,7 +12,7 @@ CREATE TABLE cron.job_run_details (
6+
return_message text,
7+
start_time timestamptz,
8+
end_time timestamptz
9+
-);
10+
+) USING heap;
11+
12+
GRANT SELECT ON cron.job_run_details TO public;
13+
GRANT DELETE ON cron.job_run_details TO public;
14+
diff --git a/pg_cron.sql b/pg_cron.sql
15+
index 2de23f4..e843ac7 100644
16+
--- a/pg_cron.sql
17+
+++ b/pg_cron.sql
18+
@@ -23,7 +23,7 @@ CREATE TABLE cron.job (
19+
nodeport int not null default pg_catalog.inet_server_port(),
20+
database text not null default pg_catalog.current_database(),
21+
username text not null default current_user
22+
-);
23+
+) USING heap;
24+
GRANT SELECT ON cron.job TO public;
25+
ALTER TABLE cron.job ENABLE ROW LEVEL SECURITY;
26+
CREATE POLICY cron_job_policy ON cron.job USING (username OPERATOR(pg_catalog.=) current_user);

nix/ext/versions.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@
114114
"orioledb-17"
115115
],
116116
"rev": "v1.6.4",
117-
"hash": "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40="
117+
"hash": "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40=",
118+
"patches": [
119+
"pg_cron-heap-tables.patch"
120+
]
118121
}
119122
},
120123
"pg_graphql": {

0 commit comments

Comments
 (0)