Created
December 7, 2014 16:55
-
-
Save zhangce/35df17b11e03862ee801 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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