-- -- pg_has_role/3 -- create or replace function pg_has_role( name, name, text ) returns bool as $$ pg_has_role_name_name$$ language plpgsql; -- -- pg_has_role/3 -- create or replace function pg_has_role( name, oid, text ) returns bool as $$ pg_has_role_name_id$$ language plpgsql; -- -- pg_has_role/3 -- create or replace function pg_has_role( oid, name, text ) returns bool as $$ pg_has_role_id_name$$ language plpgsql; -- -- pg_has_role/3 -- create or replace function pg_has_role( oid, oid, text ) returns bool as $$ pg_has_role_id_id$$ language plpgsql; -- -- pg_has_role/2 -- create or replace function pg_has_role( name, text ) returns bool as $$ pg_has_role_name$$ language plpgsql; -- -- pg_has_role/2 -- create or replace function pg_has_role( oid, text ) returns bool as $$ pg_has_role_id$$ language plpgsql;