Unable to Call Stored Procedure from Postman #1742
Answered
by
steve-chavez
girishvenkata14
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
steve-chavez
Jan 25, 2021
Replies: 2 comments
-
Stored Procedures are not supported. You need to create this as a function, not a procedure. |
Beta Was this translation helpful? Give feedback.
0 replies
-
For reference: #1210. Postgres 11 procedures have limitations, AFAICT you don't need them unless you want to start a transaction inside them. So changing your proc to a function should work fine - |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wolfgangwalther
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For reference: #1210.
Postgres 11 procedures have limitations, AFAICT you don't need them unless you want to start a transaction inside them. So changing your proc to a function should work fine -
CREATE FUNCTION
instead ofCREATE PROCEDURE
.