mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-07 19:47:50 +08:00
This provides a newer version of adminpack which works with the newly added default roles to support GRANT'ing to non-superusers access to read and write files, along with related functions (unlinking files, getting file length, renaming/removing files, scanning the log file directory) which are supported through adminpack. Note that new versions of the functions are required because an environment might have an updated version of the library but still have the old adminpack 1.0 catalog definitions (where EXECUTE is GRANT'd to PUBLIC for the functions). This patch also removes the long-deprecated alternative names for functions that adminpack used to include and which are now included in the backend, in adminpack v1.1. Applications using the deprecated names should be updated to use the backend functions instead. Existing installations which continue to use adminpack v1.0 should continue to function until/unless adminpack is upgraded. Reviewed-By: Michael Paquier Discussion: https://postgr.es/m/20171231191939.GR2416%40tamriel.snowman.net
52 lines
1.6 KiB
SQL
52 lines
1.6 KiB
SQL
/* contrib/adminpack/adminpack--1.0--1.1.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
|
\echo Use "ALTER EXTENSION adminpack UPDATE TO '1.1'" to load this file. \quit
|
|
|
|
/* ***********************************************
|
|
* Administrative functions for PostgreSQL
|
|
* *********************************************** */
|
|
|
|
/* generic file access functions */
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.pg_file_write(text, text, bool)
|
|
RETURNS bigint
|
|
AS 'MODULE_PATHNAME', 'pg_file_write_v1_1'
|
|
LANGUAGE C VOLATILE STRICT;
|
|
|
|
REVOKE EXECUTE ON FUNCTION pg_catalog.pg_file_write(text, text, bool) FROM PUBLIC;
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.pg_file_rename(text, text, text)
|
|
RETURNS bool
|
|
AS 'MODULE_PATHNAME', 'pg_file_rename_v1_1'
|
|
LANGUAGE C VOLATILE;
|
|
|
|
REVOKE EXECUTE ON FUNCTION pg_catalog.pg_file_rename(text, text, text) FROM PUBLIC;
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.pg_file_rename(text, text)
|
|
RETURNS bool
|
|
AS 'SELECT pg_catalog.pg_file_rename($1, $2, NULL::pg_catalog.text);'
|
|
LANGUAGE SQL VOLATILE STRICT;
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.pg_file_unlink(text)
|
|
RETURNS bool
|
|
AS 'MODULE_PATHNAME', 'pg_file_unlink_v1_1'
|
|
LANGUAGE C VOLATILE STRICT;
|
|
|
|
REVOKE EXECUTE ON FUNCTION pg_catalog.pg_file_unlink(text) FROM PUBLIC;
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.pg_logdir_ls()
|
|
RETURNS setof record
|
|
AS 'MODULE_PATHNAME', 'pg_logdir_ls_v1_1'
|
|
LANGUAGE C VOLATILE STRICT;
|
|
|
|
REVOKE EXECUTE ON FUNCTION pg_catalog.pg_logdir_ls() FROM PUBLIC;
|
|
|
|
/* These functions are now in the backend and callers should update to use those */
|
|
|
|
DROP FUNCTION pg_file_read(text, bigint, bigint);
|
|
|
|
DROP FUNCTION pg_file_length(text);
|
|
|
|
DROP FUNCTION pg_logfile_rotate();
|