I understand the distinction between:
- Scalar functions
- Set-Returning-Functions (SRF)s
- Internal functions
- Window functions
- Aggregate functions of all sorts
- User-Implemented functions (which in PostgreSQL can be implement in any language)
- Etc.
In SQL Server "Stored Procedures" are permitted through EXEC
. What does that provide over any other function executed with SELECT
that returns NULL
?
When PostgreSQL gets Stored Procedures what will they bring me, and what is the formal distinction if any between a function and a stored procedure in the spec?
I read this question but it seems to predate the announcement of the implementation
Best Answer
Since Postgres functions (
CREATE FUNCTION
) only run in a (single) transaction context, several important commands cannot be executed inside a function body. LikeCREATE DATABASE
orCREATE INDEX CONCURRENTLY
orVACUUM
. The manual:Functions are often called "stored procedures", which has always been a misleading term - probably carried over from other RDBMS. With the arrival of SQL procedures (
CREATE PROCEDURE
) in Postgres 11 that misnomer should be avoided completely.SQL procedures can begin and end transactions. But the commands mentioned above are not allowed inside any transaction block at all, so those cannot be included in SQL procedures, either (yet).
Multiple result sets are planned for the future, but not implemented, yet.
Related: