Home > Net >  How does row level security (RLS) interact with traditional GRANT roles
How does row level security (RLS) interact with traditional GRANT roles

Time:03-29

Is a query allowed only when the user has been granted access, and the data returned is the subset that RLS permits?

CodePudding user response:

Permissions regulate which databases, schemas, tables and table column a user can access. Row level security adds additional conditions to each statement that determine which rows a user can see or modify.

  • Related