Skip to content

Instantly share code, notes, and snippets.

@chbatey
Last active August 29, 2015 14:21
Show Gist options
  • Save chbatey/c40482646ab899d8117e to your computer and use it in GitHub Desktop.
Save chbatey/c40482646ab899d8117e to your computer and use it in GitHub Desktop.
CREATE FUNCTION maxI(current int, candidate int)
CALLED ON NULL INPUT
RETURNS int LANGUAGE java AS
'if (current == null) return candidate; else return Math.max(current, candidate);' ;
CREATE AGGREGATE maxAgg(int)
SFUNC maxI
STYPE int
INITCOND null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment