Skip to content

Instantly share code, notes, and snippets.

@drob
Created February 24, 2014 06:15
Show Gist options
  • Select an option

  • Save drob/9182790 to your computer and use it in GitHub Desktop.

Select an option

Save drob/9182790 to your computer and use it in GitHub Desktop.
CREATE OR REPLACE FUNCTION does_not_blowup(num BIGINT) RETURNS HSTORE[] AS $$
SELECT array_agg(('num=>' || i)::HSTORE)
FROM generate_series(1, num) AS i;
$$ LANGUAGE SQL IMMUTABLE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment