Skip to content

Instantly share code, notes, and snippets.

@garethflowers
Last active May 3, 2021 21:41
Show Gist options
  • Select an option

  • Save garethflowers/26b64425ec77a0aa9fc3 to your computer and use it in GitHub Desktop.

Select an option

Save garethflowers/26b64425ec77a0aa9fc3 to your computer and use it in GitHub Desktop.
Returns a sorted array.
CREATE OR REPLACE FUNCTION array_sort(
text[]
)
RETURNS text[]
LANGUAGE sql
IMMUTABLE
STRICT
AS $$
SELECT ARRAY(
SELECT x
FROM unnest($1) AS x
ORDER BY x
);
$$;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment