You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PostgreSQL enforces a serial execution plan once any parallel unsafe function is involved. A function that is not explicitly declared as PARALLEL SAFE or PARALLEL RESTRICTED is considered UNSAFE:
PostgreSQL enforces a serial execution plan once any parallel unsafe function is involved. A function that is not explicitly declared as
PARALLEL SAFE
orPARALLEL RESTRICTED
is consideredUNSAFE
:https://www.postgresql.org/docs/current/sql-createfunction.html
Currently all functions within
lib-sql
would therefore be consideredUNSAFE
.The text was updated successfully, but these errors were encountered: