Você pode obter a lista de índices, sua tabela e coluna usando esta consulta:
select
t.relname as table_name,
i.relname as index_name,
a.attname as column_name
from
pg_class t,
pg_class i,
pg_index ix,
pg_attribute a
where
t.oid = ix.indrelid
and i.oid = ix.indexrelid
and a.attrelid = t.oid
and a.attnum = ANY(ix.indkey)
and t.relkind = 'r'
-- and t.relname like 'mytable'
order by
t.relname,
i.relname;
A partir daí, você pode verificar a existência pelo nome do índice ou coluna(s) envolvida(s) e decidir criar/ignorar o índice.