mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
6b7d11ffda
All functions provided by this extension are PARALLEL RESTRICTED, because they provide information about the connection state. Parallel workers don't have this information and therefore these functions can't be executed in a worker (but they can be present in a query some other part of which uses parallelism). Andreas Karlsson
16 lines
746 B
SQL
16 lines
746 B
SQL
/* contrib/sslinfo/sslinfo--1.1--1.2.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
|
\echo Use "ALTER EXTENSION sslinfo UPDATE TO '1.2'" to load this file. \quit
|
|
|
|
ALTER FUNCTION ssl_client_serial() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_is_used() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_version() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_cipher() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_client_cert_present() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_client_dn_field(text) PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_issuer_field(text) PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_client_dn() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_issuer_dn() PARALLEL RESTRICTED;
|
|
ALTER FUNCTION ssl_extension_info() PARALLEL RESTRICTED;
|