With PostgreSQL 9.4 on linux centos 6.6.
I give a privilege to a user with something like :
ALTER DEFAULT PRIVILEGES FOR ROLE DBNAME_adm IN SCHEMA DBNAME_adm GRANT SELECT,INSERT,UPDATE,DELETE ON TABLES TO DBNAME_usr;
I need to have a SQL statement to find if this privilege is already ok or not. I did not find any table in pg_catalog nor information_schema which contains such an information.
Where can I find default privileges metadata ?