blob: 5d2d9b3479de7fabf67e63e500fb156b4c3e13fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $PostgreSQL$ */
-- 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();
|