mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
Renumber pg_get_acl() in pg_proc.dat
a6417078c4
has introduced as project policy that new features committed during the development cycle should use new OIDs in the [8000,9999] range.4564f1cebd
did not respect that rule, so let's renumber pg_get_acl() to use an OID in the correct range. Bump catalog version.
This commit is contained in:
@@ -57,6 +57,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 202407041
|
||||
#define CATALOG_VERSION_NO 202407081
|
||||
|
||||
#endif
|
||||
|
@@ -6362,7 +6362,7 @@
|
||||
proname => 'pg_describe_object', provolatile => 's', prorettype => 'text',
|
||||
proargtypes => 'oid oid int4', prosrc => 'pg_describe_object' },
|
||||
|
||||
{ oid => '6347', descr => 'get ACL for SQL object',
|
||||
{ oid => '8730', descr => 'get ACL for SQL object',
|
||||
proname => 'pg_get_acl', provolatile => 's', prorettype => '_aclitem',
|
||||
proargtypes => 'oid oid', proargnames => '{classid,objid}',
|
||||
prosrc => 'pg_get_acl' },
|
||||
|
Reference in New Issue
Block a user