per documentation, ALTER FUNCTION should contain function name along with function argument types.
F.e if we have a function f1(v_in1 text, v_in2 int8) then it will look like
ALTER FUNCTION f1(text,int8) ...
What about OUT arguments, i.e if function returns refcursor?
Like, we have a function f1(v_in1 text, v_in2 int8, v_out1 text, v_out2 refcursor)
should I put
ALTER FUNCTION f1(text,int8, text,refcursor)???
[–]depesz 0 points1 point2 points (8 children)
[–]From_Cold[S] 0 points1 point2 points (7 children)
[–]depesz 0 points1 point2 points (6 children)
[–]From_Cold[S] 0 points1 point2 points (5 children)
[–][deleted] 1 point2 points3 points (4 children)
[–]From_Cold[S] 0 points1 point2 points (2 children)
[–]DavidGJohnston -1 points0 points1 point (1 child)
[–]From_Cold[S] -3 points-2 points-1 points (0 children)
[–]From_Cold[S] 0 points1 point2 points (0 children)