SET client_min_messages to specific ROLE postgres
问题 Hi Im trying to set the client_min_messages = error to a role using the postgres user, but when I login in the role I check current_setting('client_min_messages') and I get DEFAULT VALUE (notice). Ive already tried restarting config and also done some tests. To summarize I did: Login with postgres role. check default values of client_min_messages(notice) and log_min_messages(warning). ALTER ROLE anne SET client_min_messages = error; ALTER ROLE anne SET log_min_messages = panic; SELECT pg