PostgreSQL - Roles and Security
You have two policies on table
If user
projects:CREATE POLICY user_policy ON projects FOR SELECT USING (owner = current_user);
CREATE POLICY admin_policy ON projects FOR SELECT TO admins USING (true);
If user
bob is in group admins, what rows will he see?