Is there a way to allow a user to bypass RLS for all tables is Postgres?
Asked
Active
Viewed 1,279 times
1 Answers
2
According to the documentation, it is possible for a user to be assigned the BYPASSRLS
attribute by another superuser. With this, a user can bypass RLS for all tables in Postgres.
And of course, superusers can bypass RLS be default.

richyen
- 8,114
- 4
- 13
- 28
-
`BYPASSRLS` sounds like exactly what I want. Thank you! – spierce7 Dec 02 '22 at 18:23