3 -- Adjust this setting to control where the objects get created.
4 SET search_path
= public;
7 -- Input and output functions and the type itself:
10 CREATE OR REPLACE FUNCTION chkpass_in(cstring
)
15 CREATE OR REPLACE FUNCTION chkpass_out(chkpass
)
27 CREATE OR REPLACE FUNCTION raw(chkpass
)
29 AS 'MODULE_PATHNAME', 'chkpass_rout'
33 -- The various boolean tests:
36 CREATE OR REPLACE FUNCTION eq(chkpass
, text)
38 AS 'MODULE_PATHNAME', 'chkpass_eq'
41 CREATE OR REPLACE FUNCTION ne(chkpass
, text)
43 AS 'MODULE_PATHNAME', 'chkpass_ne'
64 COMMENT ON TYPE chkpass
IS 'password type with checks';