I have looked into the documentation for GRANT Found here and I was trying to see if there is a built-in function that can let me look at what level of accessibilit
GRANT
You could query the table_privileges table in the information schema:
table_privileges
SELECT table_catalog, table_schema, table_name, privilege_type FROM information_schema.table_privileges WHERE grantee = 'MY_USER'