Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e311c6e

Browse files
committed
Renumber pg_get_acl() in pg_proc.dat
a641707 has introduced as project policy that new features committed during the development cycle should use new OIDs in the [8000,9999] range. 4564f1c did not respect that rule, so let's renumber pg_get_acl() to use an OID in the correct range. Bump catalog version.
1 parent 7340d93 commit e311c6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/include/catalog/catversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@
5757
*/
5858

5959
/* yyyymmddN */
60-
#define CATALOG_VERSION_NO 202407041
60+
#define CATALOG_VERSION_NO 202407081
6161

6262
#endif

src/include/catalog/pg_proc.dat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6362,7 +6362,7 @@
63626362
proname => 'pg_describe_object', provolatile => 's', prorettype => 'text',
63636363
proargtypes => 'oid oid int4', prosrc => 'pg_describe_object' },
63646364

6365-
{ oid => '6347', descr => 'get ACL for SQL object',
6365+
{ oid => '8730', descr => 'get ACL for SQL object',
63666366
proname => 'pg_get_acl', provolatile => 's', prorettype => '_aclitem',
63676367
proargtypes => 'oid oid', proargnames => '{classid,objid}',
63686368
prosrc => 'pg_get_acl' },

0 commit comments

Comments
 (0)