Renumber pg_get_acl() in pg_proc.dat
authorMichael Paquier <[email protected]>
Mon, 8 Jul 2024 06:34:33 +0000 (15:34 +0900)
committerMichael Paquier <[email protected]>
Mon, 8 Jul 2024 06:34:33 +0000 (15:34 +0900)
a6417078c414 has introduced as project policy that new features
committed during the development cycle should use new OIDs in the
[8000,9999] range.

4564f1cebd43 did not respect that rule, so let's renumber pg_get_acl()
to use an OID in the correct range.

Bump catalog version.

src/include/catalog/catversion.h
src/include/catalog/pg_proc.dat

index be13e09fba306904e375e6ca4e062587079575d2..e554bb57cce3f3c18e03592a1e088bb50b2ae697 100644 (file)
@@ -57,6 +57,6 @@
  */
 
 /*                         yyyymmddN */
-#define CATALOG_VERSION_NO 202407041
+#define CATALOG_VERSION_NO 202407081
 
 #endif
index e1001a4822e592130e658b273b60c52673346921..0bf413fe054a751d2c7183fcb77f9731f4cefd55 100644 (file)
   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' },