Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In PostgreSQL, when granting sequences, can I grant only USAGE instead of both SELECT, USAGE?

I read answers about granting sequences in PostgreSQL. Generally, they say to grant both SELECT, USAGE. I wonder if I can grant only USAGE. Which one is best practice in granting sequences and why?

like image 755
sandthorn Avatar asked Oct 19 '25 13:10

sandthorn


1 Answers

Quote from the manual

SELECT privilege

For sequences, this privilege also allows the use of the currval function.

USAGE privilege

For sequences, this privilege allows the use of the currval and nextval functions.

(emphasis mine)

So the answer is: if you want to allow the usage of nextval() you will have to grant the USAGE privilege. If you grant USAGE, the SELECT privilege is not needed.


Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!