-- darcy@druid.net
-- http://www.druid.net/darcy/
--
--- $Header: /cvsroot/pgsql/contrib/chkpass/chkpass.sql.in,v 1.1 2001/08/23 16:50:33 tgl Exp $
+-- $Header: /cvsroot/pgsql/contrib/chkpass/chkpass.sql.in,v 1.1.2.1 2005/01/29 22:36:03 tgl Exp $
--
-- best viewed with tabs set to 4
--
create function chkpass_in(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function chkpass_out(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create type chkpass (
internallength = 16,
create function raw(chkpass)
returns text
as 'MODULE_PATHNAME', 'chkpass_rout'
- language 'c';
+ language 'c' with (isStrict);
--
-- The various boolean tests:
create function eq(chkpass, text)
returns bool
as 'MODULE_PATHNAME', 'chkpass_eq'
- language 'c';
+ language 'c' with (isStrict);
create function ne(chkpass, text)
returns bool
as 'MODULE_PATHNAME', 'chkpass_ne'
- language 'c';
+ language 'c' with (isStrict);
--
-- Now the operators. Note how some of the parameters to some
--
-- PostgreSQL code for ISSNs.
--
--- $Id: isbn_issn.sql.in,v 1.2 2000/06/19 13:53:39 momjian Exp $
+-- $Id: isbn_issn.sql.in,v 1.2.4.1 2005/01/29 22:36:03 tgl Exp $
--
create function issn_in(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function issn_out(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create type issn (
internallength = 16,
create function issn_lt(issn, issn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function issn_le(issn, issn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function issn_eq(issn, issn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function issn_ge(issn, issn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function issn_gt(issn, issn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function issn_ne(issn, issn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
--
-- Now the operators. Note how some of the parameters to some
--
-- PostgreSQL code for ISBNs.
--
--- $Id: isbn_issn.sql.in,v 1.2 2000/06/19 13:53:39 momjian Exp $
+-- $Id: isbn_issn.sql.in,v 1.2.4.1 2005/01/29 22:36:03 tgl Exp $
--
--
-- Input and output functions and the type itself:
create function isbn_in(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function isbn_out(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create type isbn (
internallength = 16,
create function isbn_lt(isbn, isbn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function isbn_le(isbn, isbn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function isbn_eq(isbn, isbn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function isbn_ge(isbn, isbn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function isbn_gt(isbn, isbn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
create function isbn_ne(isbn, isbn)
returns bool
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
--
-- Now the operators. Note how some of the parameters to some
--
-- PostgreSQL code for LargeObjects
--
--- $Id: lo.sql.in,v 1.6 2000/11/21 21:51:58 tgl Exp $
+-- $Id: lo.sql.in,v 1.6.4.1 2005/01/29 22:36:03 tgl Exp $
--
--
-- Create the data type
create function lo_in(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
-- used by the lo type, it returns the oid of the object
create function lo_out(opaque)
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
-- finally the type itself
create type lo (
create function lo_oid(lo)
returns oid
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
-- same function, named to allow it to be used as a type coercion, eg:
-- create table a (image lo);
create function oid(lo)
returns oid
as 'MODULE_PATHNAME', 'lo_oid'
- language 'c';
+ language 'c' with (isStrict);
-- this allows us to convert an oid to a managed lo object
-- ie: insert into test values (lo_import('/fullpath/file')::lo);
create function lo(oid)
returns lo
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);
-- This is used in triggers
create function lo_manage()
returns opaque
as 'MODULE_PATHNAME'
- language 'c';
+ language 'c' with (isStrict);