PostgreSQL - Roles and Security
Given the following policy on table
documents:
CREATE POLICY user_policy ON documents FOR SELECT USING (owner = current_user);What rows will a user see when they run
SELECT * FROM documents;?