Skip to content

Add MAINTAIN privilege support which was introduced in Postgresql 17 beta 1#34

Merged
andruche merged 1 commit intocomagic:masterfrom
pensnarik:add-maintain-perm-support
Nov 5, 2025
Merged

Add MAINTAIN privilege support which was introduced in Postgresql 17 beta 1#34
andruche merged 1 commit intocomagic:masterfrom
pensnarik:add-maintain-perm-support

Conversation

@pensnarik
Copy link
Copy Markdown
Contributor

@pensnarik pensnarik commented Nov 4, 2025

Add MAINTAIN privilege support which was introduced in Postgresql 17 beta 1

This fix adds MAINTAIN privilege support. For details about this privilege, see:

postgres/postgres@ecb0fd3

This will update exported data for all tables if you upgraded your PostgreSQL cluster version to 17 or higher. Thus, instead of:

grant select, insert, update, delete, truncate, references, trigger on table table to grantee

it will look:

grant maintain, select, insert, update, delete, truncate, references, trigger on table table to grantee

…beta 1

This fix adds MAINTAIN privilege support. For details about this privilege, see:

postgres/postgres@ecb0fd3

This will update exported data for all tables if you upgraded your PostgreSQL cluster version to 17 or higher. Thus,
instead of:

grant select, insert, update, delete, truncate, references, trigger on table <table> to <grantee>

it will look:

grant maintain, select, insert, update, delete, truncate, references, trigger on table <table> to <grantee>
@andruche andruche merged commit b6bcc2c into comagic:master Nov 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants