Fix local end user session grants and schema resolution
Some checks failed
Repo Quality / structure (push) Has been cancelled

This commit is contained in:
Rodrigo Pace
2026-05-13 14:49:12 -03:00
parent 52bf971b8b
commit 8314351c98
28 changed files with 99 additions and 37 deletions

View File

@@ -8,8 +8,13 @@ CREATE DATA ROLE employee_role;
CREATE DATA ROLE manager_role;
CREATE DATA ROLE hr_role;
CREATE ROLE pii_session_role;
GRANT CREATE SESSION TO pii_session_role;
GRANT pii_session_role TO employee_role;
GRANT pii_session_role TO manager_role;
GRANT pii_session_role TO hr_role;
GRANT DATA ROLE employee_role TO emma;
GRANT DATA ROLE employee_role TO marvin;
GRANT DATA ROLE manager_role TO marvin;
GRANT DATA ROLE hr_role TO victoria;