I have very little experience in PostgreSQL. I have been reading tutorials and documentation, and in order to create or drop a schema all of them say that I just need to execute:
CREATE SCHEMA myschema;
DROP SCHEMA myschema;
but it doesn't work. I finally stumble upon that I have to use:
CREATE SCHEMA myschema AUTHORIZATION pgsql;
DROP SCHEMA myschema RESTRICT;
Do I have a corrupted installation or maybe I added some feature that I shouldn't?
UPDATE: If I use pgAdmin from Mac OS X it works. I don't receive any error or alert of any kind. Basically I just log into pgsql account like this:
su pgsql
then
psql mydatabase