... Dove sono le librerie standard (?) Per questo tipo di utilità array_X ??
Prova a cercare ... Vedi alcuni ma nessuno standard:
La array_distinct()
funzione snippet-lib più semplice e veloce
Qui l'implementazione più semplice e forse più veloce per array_unique()
o array_distinct()
:
CREATE FUNCTION array_distinct(anyarray) RETURNS anyarray AS $f$
SELECT array_agg(DISTINCT x) FROM unnest($1) t(x);
$f$ LANGUAGE SQL IMMUTABLE;
NOTA: funziona come previsto con qualsiasi tipo di dati, eccetto con array di array,
SELECT array_distinct( array[3,3,8,2,6,6,2,3,4,1,1,6,2,2,3,99] ),
array_distinct( array['3','3','hello','hello','bye'] ),
array_distinct( array[array[3,3],array[3,3],array[3,3],array[5,6]] );
l '"effetto collaterale" è quello di far esplodere tutti gli array in un insieme di elementi.
PS: con gli array JSONB funziona bene,
SELECT array_distinct( array['[3,3]'::JSONB, '[3,3]'::JSONB, '[5,6]'::JSONB] );
Modifica: più complesso ma utile, un parametro "drop nulls"
CREATE FUNCTION array_distinct(
anyarray,
boolean DEFAULT false
) RETURNS anyarray AS $f$
SELECT array_agg(DISTINCT x)
FROM unnest($1) t(x)
WHERE CASE WHEN $2 THEN x IS NOT NULL ELSE true END;
$f$ LANGUAGE SQL IMMUTABLE;