Jag föredrar den här syntaxen (cirka 5 % snabbare)
create or replace function public.array_unique(arr anyarray)
returns anyarray as $body$
select array( select distinct unnest($1) )
$body$ language 'sql';
använder:
select array_unique(ARRAY['1','2','3','4','4']);