Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e311c6e

Browse filesBrowse 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
Copy full SHA for e311c6e

File tree

Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed

‎src/include/catalog/catversion.h

Copy file name to clipboardExpand all lines: src/include/catalog/catversion.h
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/include/catalog/pg_proc.dat
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.