Skip to content

Instantly share code, notes, and snippets.

@zhangce
Created December 7, 2014 16:55
Show Gist options
  • Select an option

  • Save zhangce/35df17b11e03862ee801 to your computer and use it in GitHub Desktop.

Select an option

Save zhangce/35df17b11e03862ee801 to your computer and use it in GitHub Desktop.
drop aggregate array_stack_int(integer[]);
drop aggregate array_stack_text(text[]);
CREATE ORDERED AGGREGATE array_stack_int(integer[]) (
SFUNC = array_cat,
STYPE = integer[]
);
CREATE ORDERED AGGREGATE array_stack_text(text[]) (
SFUNC = array_cat,
STYPE = text[]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment