Skip to content

Commit b32307c

Browse files
soedirgostaaldraad
authored andcommitted
tmp DO NOT MERGE
1 parent a55d5a9 commit b32307c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ postgres_major:
1010

1111
# Full version strings for each major version
1212
postgres_release:
13-
postgresorioledb-17: "17.6.0.014-orioledb"
14-
postgres17: "17.6.1.057"
15-
postgres15: "15.14.1.057"
13+
postgresorioledb-17: "17.6.0.015-orioledb"
14+
postgres17: "17.6.1.058"
15+
postgres15: "15.14.1.058"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: 1.19.0

migrations/schema-15.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,8 @@ begin
495495
end;
496496
$_$;
497497

498+
revoke all on function pgbouncer.get_auth(text) from public;
499+
grant execute on function pgbouncer.get_auth(text) to pgbouncer;
498500

499501
SET default_tablespace = '';
500502

migrations/schema-17.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,8 @@ begin
496496
end;
497497
$_$;
498498

499-
REVOKE ALL ON FUNCTION pgbouncer.get_auth(p_usename TEXT) FROM PUBLIC;
500-
GRANT EXECUTE ON FUNCTION pgbouncer.get_auth(p_usename TEXT) TO pgbouncer;
499+
revoke all on function pgbouncer.get_auth(text) from public;
500+
grant execute on function pgbouncer.get_auth(text) to pgbouncer;
501501

502502
SET default_tablespace = '';
503503

migrations/schema-orioledb-17.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,8 @@ begin
510510
end;
511511
$_$;
512512

513-
REVOKE ALL ON FUNCTION pgbouncer.get_auth(p_usename TEXT) FROM PUBLIC;
514-
GRANT EXECUTE ON FUNCTION pgbouncer.get_auth(p_usename TEXT) TO pgbouncer;
513+
revoke all on function pgbouncer.get_auth(text) from public;
514+
grant execute on function pgbouncer.get_auth(text) to pgbouncer;
515515

516516
SET default_tablespace = '';
517517

0 commit comments

Comments
 (0)