You can see who is owner in certain table:
select * from pg_tables where tablename="my_tbl";
or you can see all tables by certain owner:
select * from pg_tables where tableowner="username";
You can see who is owner in certain table:
select * from pg_tables where tablename="my_tbl";
or you can see all tables by certain owner:
select * from pg_tables where tableowner="username";