Last active
October 22, 2018 18:40
-
-
Save chbatey/55e559408f6016bd72db 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
CREATE OR REPLACE FUNCTION state_group_and_count( state map<text, int>, type text ) | |
CALLED ON NULL INPUT | |
RETURNS map<text, int> | |
LANGUAGE java AS ' | |
Integer count = (Integer) state.get(type); if (count == null) count = 1; else count++; state.put(type, count); return state; ' ; | |
CREATE OR REPLACE AGGREGATE group_and_count(text) | |
SFUNC state_group_and_count | |
STYPE map<text, int> | |
INITCOND {}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment