Tom Lane writes: > pg_dumpall doesn't yet do the right thing at the database level, but I > believe he's planning to take care of that.
I have never heard of database privileges, except that people occasionally expect me to fix something about them. :-/ > I'm not sure there is anything we can do about this without making > life worse. But it's annoying. Any thoughts? There are a couple of simple recipes we can give to users, such as UPDATE pg_language SET lanacl = '{"=U"}' WHERE lanpltrusted; UPDATE pg_proc SET proacl = '{"=X"}' WHERE proacl IS NULL; The trick is that you'd need to run the first line before creating any functions. Blech. -- Peter Eisentraut [EMAIL PROTECTED] ---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]