Skip to content

Instantly share code, notes, and snippets.

Created April 16, 2014 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/10846322 to your computer and use it in GitHub Desktop.
Save anonymous/10846322 to your computer and use it in GitHub Desktop.
CREATE OR REPLACE FUNCTION array_sum_py3(a numeric[], b numeric[])
RETURNS numeric[] AS
$BODY$
from operator import add
return map(add, a, b)
$BODY$
LANGUAGE plpython3u VOLATILE
COST 100;
ALTER FUNCTION array_sum_py3(numeric[], numeric[])
OWNER TO fabio;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment