mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
13 lines
442 B
SQL
13 lines
442 B
SQL
/* $PostgreSQL: pgsql/contrib/sslinfo/uninstall_sslinfo.sql,v 1.3 2007/11/13 04:24:29 momjian Exp $ */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP FUNCTION ssl_client_serial();
|
|
DROP FUNCTION ssl_is_used();
|
|
DROP FUNCTION ssl_client_cert_present();
|
|
DROP FUNCTION ssl_client_dn_field(text);
|
|
DROP FUNCTION ssl_issuer_field(text);
|
|
DROP FUNCTION ssl_client_dn();
|
|
DROP FUNCTION ssl_issuer_dn();
|