Skip to content

Instantly share code, notes, and snippets.

@00krishna
Last active August 29, 2015 14:01
Show Gist options
  • Save 00krishna/65bcaac8679da16e740f to your computer and use it in GitHub Desktop.
Save 00krishna/65bcaac8679da16e740f to your computer and use it in GitHub Desktop.
template for plpsql function
-- Function: template_function(OUT result boolean)
-- DROP FUNCTION template_function(OUT result boolean)
CREATE OR REPLACE FUNCTION template_function(OUT result boolean)
AS
$BODY$
DECLARE
BEGIN
result:= 1;
END;
$BODY$
LANGUAGE plpgsql;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment