mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-17 11:57:00 +08:00
Remove the adminpack contrib extension
The adminpack extension was only used to support pgAdmin III, which in turn was declared EOL many years ago. Removing the extension also allows us to remove functions from core as well which were only used to support old version of adminpack. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Reviewed-by: Nathan Bossart <nathandbossart@gmail.com> Reviewed-by: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com> Discussion: https://postgr.es/m/CALj2ACUmL5TraYBUBqDZBi1C+Re8_=SekqGYqYprj_W8wygQ8w@mail.gmail.com
This commit is contained in:
@ -57,6 +57,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 202402291
|
||||
#define CATALOG_VERSION_NO 202403041
|
||||
|
||||
#endif
|
||||
|
||||
@ -6545,9 +6545,6 @@
|
||||
proargtypes => '', prosrc => 'pg_reload_conf' },
|
||||
{ oid => '2622', descr => 'rotate log file',
|
||||
proname => 'pg_rotate_logfile', provolatile => 'v', prorettype => 'bool',
|
||||
proargtypes => '', prosrc => 'pg_rotate_logfile_v2' },
|
||||
{ oid => '4099', descr => 'rotate log file - old version for adminpack 1.0',
|
||||
proname => 'pg_rotate_logfile_old', provolatile => 'v', prorettype => 'bool',
|
||||
proargtypes => '', prosrc => 'pg_rotate_logfile' },
|
||||
{ oid => '3800', descr => 'current logging collector file location',
|
||||
proname => 'pg_current_logfile', proisstrict => 'f', provolatile => 'v',
|
||||
@ -6578,10 +6575,6 @@
|
||||
proname => 'pg_read_file', provolatile => 'v', prorettype => 'text',
|
||||
proargtypes => 'text int8 int8 bool',
|
||||
prosrc => 'pg_read_file_off_len_missing' },
|
||||
{ oid => '4100',
|
||||
descr => 'read text from a file - old version for adminpack 1.0',
|
||||
proname => 'pg_read_file_old', provolatile => 'v', prorettype => 'text',
|
||||
proargtypes => 'text int8 int8', prosrc => 'pg_read_file' },
|
||||
{ oid => '3826', descr => 'read text from a file',
|
||||
proname => 'pg_read_file', provolatile => 'v', prorettype => 'text',
|
||||
proargtypes => 'text', prosrc => 'pg_read_file_all' },
|
||||
|
||||
Reference in New Issue
Block a user