PostgreSQL - Roles and Security
Given the table
What will the query
orders with RLS enabled and this policy:CREATE POLICY order_owner ON orders FOR SELECT USING (owner = current_user);
What will the query
SELECT * FROM orders; return when run by user alice?