You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Andrew W. Hill edited this page Jul 21, 2014
·
2 revisions
CREATE OR REPLACEFUNCTION_final_mode(anyarray)
RETURNS anyelement AS
$BODY$
SELECT a
FROM unnest($1) a
GROUP BY1ORDER BYCOUNT(1) DESC, 1LIMIT1;
$BODY$
LANGUAGE 'sql' IMMUTABLE;
CREATEAGGREGATECDB_Mode(anyelement) (
SFUNC=array_append,
STYPE=anyarray,
FINALFUNC=_final_mode,
INITCOND='{}'
);